feat(ST2.GitPackages): bump up all packages

- Refresh PackageCache with latest versions of everything
This commit is contained in:
Iristyle
2013-09-16 22:32:31 -04:00
parent fad58909f7
commit 3a0c5ce9e2
43 changed files with 6367 additions and 1395 deletions

View File

@@ -2,7 +2,7 @@
from editorconfig.versiontools import join_version
VERSION = (0, 11, 1, "final")
VERSION = (0, 11, 3, "final")
__all__ = ['get_properties', 'EditorConfigError', 'exceptions']

View File

@@ -40,7 +40,8 @@ class EditorConfigHandler(object):
"""
def __init__(self, filepath, conf_filename='.editorconfig', version=None):
def __init__(self, filepath, conf_filename='.editorconfig',
version=VERSION):
"""Create EditorConfigHandler for matching given filepath"""
self.filepath = filepath
self.conf_filename = conf_filename
@@ -110,7 +111,7 @@ class EditorConfigHandler(object):
# Set indent_size to "tab" if indent_size is unspecified and
# indent_style is set to "tab".
if (opts.get("indent_style") == "tab" and
not "indent_size" in opts and self.version >= VERSION[:3]):
not "indent_size" in opts and self.version >= (0, 10, 0)):
opts["indent_size"] = "tab"
# Set tab_width to indent_size if indent_size is specified and

View File

@@ -14,7 +14,7 @@ from editorconfig.exceptions import ParsingError, PathError, VersionError
def version():
print("Version %s" % __version__)
print("EditorConfig Python Core Version %s" % __version__)
def usage(command, error=False):