diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a2c5667..3461721 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,16 @@ Change log ================================================================================ +0.0.7 - 17/11/2018 +-------------------------------------------------------------------------------- + +Fixed +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +#. `#8 `_: get_primary_key will fail when + a module is loaded later +#. deprecated old style plugin scanner: scan_plugins + 0.0.6 - 07/11/2018 -------------------------------------------------------------------------------- diff --git a/changelog.yml b/changelog.yml index d85c7aa..7101867 100644 --- a/changelog.yml +++ b/changelog.yml @@ -1,6 +1,13 @@ name: lml organisation: chfw releases: +- changes: + - action: Fixed + details: + - "`#8`: get_primary_key will fail when a module is loaded later" + - "deprecated old style plugin scanner: scan_plugins" + date: 17/11/2018 + version: 0.0.7 - changes: - action: Fixed details: diff --git a/docs/source/conf.py b/docs/source/conf.py index 3244eec..cd2ef0b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,9 +28,9 @@ copyright = u'2017-2018 Onni Software Ltd.' author = u'C.W.' # The short X.Y version -version = u'0.0.6' +version = u'0.0.7' # The full version, including alpha/beta/rc tags -release = u'0.0.6' +release = u'0.0.7' # -- General configuration --------------------------------------------------- diff --git a/lml.yml b/lml.yml index 8965338..984fdf0 100644 --- a/lml.yml +++ b/lml.yml @@ -4,9 +4,9 @@ organisation: "chfw" author: "C.W." contact: "wangc_2011@hotmail.com" company: "Onni Software Ltd." -version: "0.0.6" -current_version: "0.0.6" -release: "0.0.6" +version: "0.0.7" +current_version: "0.0.7" +release: "0.0.7" copyright_year: 2017-2018 license: New BSD dependencies: [] diff --git a/lml/_version.py b/lml/_version.py index 9fd994c..5dc9d91 100644 --- a/lml/_version.py +++ b/lml/_version.py @@ -1,2 +1,2 @@ -__version__ = "0.0.6" +__version__ = "0.0.7" __author__ = "C.W." diff --git a/lml/loader.py b/lml/loader.py index cbfda22..a4cb1ca 100644 --- a/lml/loader.py +++ b/lml/loader.py @@ -61,7 +61,8 @@ def scan_plugins( """ __plugin_name_patterns = "^%s.+$" % prefix warnings.warn( - "Deprecated! since version 0.0.3. Please use scan_plugins_regex!") + "Deprecated! since version 0.0.3. Please use scan_plugins_regex!" + ) scan_plugins_regex( plugin_name_patterns=__plugin_name_patterns, pyinstaller_path=pyinstaller_path, diff --git a/setup.py b/setup.py index 1169be1..5dcb9a9 100644 --- a/setup.py +++ b/setup.py @@ -13,14 +13,14 @@ PY26 = PY2 and sys.version_info[1] < 7 NAME = 'lml' AUTHOR = 'C.W.' -VERSION = '0.0.6' +VERSION = '0.0.7' EMAIL = 'wangc_2011@hotmail.com' LICENSE = 'New BSD' DESCRIPTION = ( 'Load me later. A lazy plugin management system.' ) URL = 'https://github.com/chfw/lml' -DOWNLOAD_URL = '%s/archive/0.0.6.tar.gz' % URL +DOWNLOAD_URL = '%s/archive/0.0.7.tar.gz' % URL FILES = ['README.rst', 'CHANGELOG.rst'] KEYWORDS = [ 'python', @@ -48,8 +48,8 @@ EXTRAS_REQUIRE = {} # You do not need to read beyond this line PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format( sys.executable) -GS_COMMAND = ('gs lml v0.0.6 ' + - "Find 0.0.6 in changelog for more details") +GS_COMMAND = ('gs lml v0.0.7 ' + + "Find 0.0.7 in changelog for more details") NO_GS_MESSAGE = ('Automatic github release is disabled. ' + 'Please install gease to enable it.') UPLOAD_FAILED_MSG = (