🥚 🎡 release 0.0.3

This commit is contained in:
chfw 2018-06-12 23:52:10 +01:00
parent c07b353511
commit 6411f74abc
9 changed files with 13 additions and 13 deletions

View File

@ -1,7 +1,7 @@
Change log
================================================================================
0.0.3 - unreleased
0.0.3 - 12/06/2018
--------------------------------------------------------------------------------
Added

View File

@ -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

View File

@ -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'

View File

@ -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."

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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 = (