diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c42b54c..44bba01 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,7 @@ Change log ================================================================================ -0.0.3 - unreleased +0.0.3 - 12/06/2018 -------------------------------------------------------------------------------- Added diff --git a/changelog.yml b/changelog.yml index 9be9efc..54ec238 100644 --- a/changelog.yml +++ b/changelog.yml @@ -6,7 +6,7 @@ releases: details: - "`dict` can be a pluggable type in addition to `function`, `class`" - get primary tag of your tag, helping you find out which category of plugins your tag points to - date: unreleased + date: 12/06/2018 version: 0.0.3 - changes: - action: Updated diff --git a/docs/source/conf.py b/docs/source/conf.py index ec0cffd..bb41cb7 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -17,8 +17,8 @@ source_suffix = '.rst' master_doc = 'index' project = u'lml' -copyright = u'2017 Onni Software Ltd.' -version = '0.0.2' +copyright = u'2017-2018 Onni Software Ltd.' +version = '0.0.3' release = '0.0.3' exclude_patterns = [] pygments_style = 'sphinx' diff --git a/lml.yml b/lml.yml index 17b69a0..97f5318 100644 --- a/lml.yml +++ b/lml.yml @@ -6,8 +6,8 @@ contact: "wangc_2011@hotmail.com" company: "Onni Software Ltd." version: "0.0.3" current_version: "0.0.3" -release: "0.0.2" -copyright_year: 2017 +release: "0.0.3" +copyright_year: 2017-2018 license: New BSD dependencies: [] description: "Load me later. A loading plugin management system." \ No newline at end of file diff --git a/lml/__init__.py b/lml/__init__.py index 820540d..602898d 100644 --- a/lml/__init__.py +++ b/lml/__init__.py @@ -4,7 +4,7 @@ Load me later. A lazy loading plugin management system. - :copyright: (c) 2017 by Onni Software Ltd. + :copyright: (c) 2017-2018 by Onni Software Ltd. :license: New BSD License, see LICENSE for more details """ import logging diff --git a/lml/loader.py b/lml/loader.py index 6177571..f5840f4 100644 --- a/lml/loader.py +++ b/lml/loader.py @@ -6,7 +6,7 @@ and pyinstaller. :func:`~lml.loader.scan_plugins` is expected to be called in the main package of yours at an earliest time of convenience. - :copyright: (c) 2017 by Onni Software Ltd. + :copyright: (c) 2017-2018 by Onni Software Ltd. :license: New BSD License, see LICENSE for more details """ import pkgutil diff --git a/lml/plugin.py b/lml/plugin.py index 132db4a..dc8835c 100644 --- a/lml/plugin.py +++ b/lml/plugin.py @@ -22,7 +22,7 @@ can be overridden to help its matching :class:`~lml.plugin.PluginManager` to look itself up. - :copyright: (c) 2017 by Onni Software Ltd. + :copyright: (c) 2017-2018 by Onni Software Ltd. :license: New BSD License, see LICENSE for more details """ import logging diff --git a/lml/utils.py b/lml/utils.py index e6d178e..31caadd 100644 --- a/lml/utils.py +++ b/lml/utils.py @@ -4,7 +4,7 @@ json utils for dump plugin info class - :copyright: (c) 2017 by Onni Software Ltd. + :copyright: (c) 2017-2018 by Onni Software Ltd. :license: New BSD License, see LICENSE for more details """ import sys diff --git a/setup.py b/setup.py index dde0d1f..43c7d14 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ DESCRIPTION = ( 'Load me later. A loading plugin management system.' ) URL = 'https://github.com/chfw/lml' -DOWNLOAD_URL = '%s/archive/0.0.2.tar.gz' % URL +DOWNLOAD_URL = '%s/archive/0.0.3.tar.gz' % URL FILES = ['README.rst', 'CHANGELOG.rst'] KEYWORDS = [ 'python' @@ -46,8 +46,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.2 ' + - "Find 0.0.2 in changelog for more details") +GS_COMMAND = ('gs lml v0.0.3 ' + + "Find 0.0.3 in changelog for more details") NO_GS_MESSAGE = ('Automatic github release is disabled. ' + 'Please install gease to enable it.') UPLOAD_FAILED_MSG = (