Skip to content

Commit

Permalink
🥚 release 0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Jan 14, 2020
1 parent 11cfb01 commit c543409
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 10 deletions.
6 changes: 6 additions & 0 deletions .moban.d/custom_travis.yml.jj2
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{% extends "travis.yml.jj2" %}

{% block custom_python_versions%}
python:
- 3.8
{% endblock %}
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
--------------------------------------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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 *.*
Expand Down
6 changes: 6 additions & 0 deletions changelog.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions pypi-mobans-pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ organisation: "moremoban"
author: "C.W."
contact: "[email protected]"
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:
Expand Down
2 changes: 1 addition & 1 deletion pypi_mobans_pkg/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.0.9"
__version__ = "0.0.10"
__author__ = "C.W."
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@

NAME = "pypi-mobans-pkg"
AUTHOR = "C.W."
VERSION = "0.0.9"
VERSION = "0.0.10"
EMAIL = "[email protected]"
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",
Expand Down Expand Up @@ -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 = (
Expand Down

0 comments on commit c543409

Please sign in to comment.