diff --git a/.moban.d/custom_travis.yml.jj2 b/.moban.d/custom_travis.yml.jj2 new file mode 100644 index 0000000..755ab55 --- /dev/null +++ b/.moban.d/custom_travis.yml.jj2 @@ -0,0 +1,6 @@ +{% extends "travis.yml.jj2" %} + +{% block custom_python_versions%} +python: + - 3.8 +{% endblock %} \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a611c47..9ee7820 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Change log ================================================================================ +0.0.10 - 14-1-2020 +-------------------------------------------------------------------------------- + +**Updated** + +#. bug fix 0.0.9 where statics folder were not included + 0.0.9 - 12-1-2020 -------------------------------------------------------------------------------- diff --git a/MANIFEST.in b/MANIFEST.in index cf9a646..cbc36ed 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,7 @@ include README.rst include CHANGELOG.rst include LICENSE +include pypi_mobans_pkg/resources/statics/* include pypi_mobans_pkg/resources/templates/* recursive-include pypi_mobans_pkg/resources/templates/gitignore *.* recursive-include pypi_mobans_pkg/resources/templates/docs *.* diff --git a/changelog.yml b/changelog.yml index c08ca38..a97e91a 100644 --- a/changelog.yml +++ b/changelog.yml @@ -1,6 +1,12 @@ name: "pypi-mobans" organisation: moremoban releases: +- changes: + - action: Updated + details: + - bug fix 0.0.9 where statics folder were not included + date: 14-1-2020 + version: 0.0.10 - changes: - action: Updated details: diff --git a/docs/source/conf.py b/docs/source/conf.py index 8198aa2..30b3b2e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,9 +25,9 @@ copyright = '2018-2020 Onni Software Ltd. and its contributors' author = 'C.W.' # The short X.Y version -version = '0.0.9' +version = '0.0.10' # The full version, including alpha/beta/rc tags -release = '0.0.9' +release = '0.0.10' # -- General configuration --------------------------------------------------- diff --git a/pypi-mobans-pkg.yml b/pypi-mobans-pkg.yml index 285dd0c..5ae05c4 100644 --- a/pypi-mobans-pkg.yml +++ b/pypi-mobans-pkg.yml @@ -3,9 +3,9 @@ organisation: "moremoban" author: "C.W." contact: "wangc_2011@hotmail.com" company: "Onni Software Ltd. and its contributors" -version: "0.0.9" -current_version: "0.0.9" -release: "0.0.9" +version: "0.0.10" +current_version: "0.0.10" +release: "0.0.10" copyright_year: 2018-2020 license: public license dependencies: diff --git a/pypi_mobans_pkg/_version.py b/pypi_mobans_pkg/_version.py index 4380c4e..6ca80c4 100644 --- a/pypi_mobans_pkg/_version.py +++ b/pypi_mobans_pkg/_version.py @@ -1,2 +1,2 @@ -__version__ = "0.0.9" +__version__ = "0.0.10" __author__ = "C.W." diff --git a/setup.py b/setup.py index 25a7fa8..848105d 100644 --- a/setup.py +++ b/setup.py @@ -32,14 +32,14 @@ NAME = "pypi-mobans-pkg" AUTHOR = "C.W." -VERSION = "0.0.9" +VERSION = "0.0.10" EMAIL = "wangc_2011@hotmail.com" LICENSE = "public license" DESCRIPTION = ( "Scaffolding mobans for your Python project." ) URL = "https://github.com/moremoban/pypi-mobans-pkg" -DOWNLOAD_URL = "%s/archive/0.0.9.tar.gz" % URL +DOWNLOAD_URL = "%s/archive/0.0.10.tar.gz" % URL FILES = ["README.rst", "CHANGELOG.rst"] KEYWORDS = [ "python", @@ -70,8 +70,8 @@ } # 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 pypi-mobans-pkg v0.0.9 " + - "Find 0.0.9 in changelog for more details") +GS_COMMAND = ("gs pypi-mobans-pkg v0.0.10 " + + "Find 0.0.10 in changelog for more details") NO_GS_MESSAGE = ("Automatic github release is disabled. " + "Please install gease to enable it.") UPLOAD_FAILED_MSG = (