🥚 🎡 release 0.0.7

This commit is contained in:
chfw 2018-11-17 22:57:09 +00:00
parent b183865e0c
commit 27a5a62d80
7 changed files with 29 additions and 11 deletions

View File

@ -1,6 +1,16 @@
Change log
================================================================================
0.0.7 - 17/11/2018
--------------------------------------------------------------------------------
Fixed
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#. `#8 <https://github.com/chfw/lml/issues/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
--------------------------------------------------------------------------------

View File

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

View File

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

View File

@ -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: []

View File

@ -1,2 +1,2 @@
__version__ = "0.0.6"
__version__ = "0.0.7"
__author__ = "C.W."

View File

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

View File

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