feat(ST2.GitPackages): bump up all packages
- Refresh PackageCache with latest versions of everything
This commit is contained in:
@@ -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']
|
||||
|
||||
|
@@ -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
|
||||
|
@@ -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):
|
||||
|
Reference in New Issue
Block a user