Skip to content

Commit

Permalink
🥚 🎡 release 0.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed May 3, 2020
1 parent 984cd48 commit 007b9c0
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 16 deletions.
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
Expand Down Expand Up @@ -143,10 +142,6 @@ dmypy.json
# Cython debug symbols
cython_debug/

# static files generated from Django application using `collectstatic`
media
static

# VirtualEnv rules
# Virtualenv
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
Expand Down Expand Up @@ -431,6 +426,9 @@ tmtags
!.vscode/extensions.json
*.code-workspace

# Local History for Visual Studio Code
.history/

# Xcode rules
# Xcode
#
Expand Down
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.14 - 03-05-2020
--------------------------------------------------------------------------------

**Updated**

#. use pypi-mobans version 0.0.11

0.0.13 - 03-05-2020
--------------------------------------------------------------------------------

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:
- use pypi-mobans version 0.0.11
date: 03-05-2020
version: 0.0.14
- 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.13'
version = '0.0.14'
# The full version, including alpha/beta/rc tags
release = '0.0.13'
release = '0.0.14'

# -- 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.13"
current_version: "0.0.13"
release: "0.0.13"
version: "0.0.14"
current_version: "0.0.14"
release: "0.0.14"
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.13"
__version__ = "0.0.14"
__author__ = "C.W."
2 changes: 1 addition & 1 deletion pypi_mobans_pkg/resources
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.13"
VERSION = "0.0.14"
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.13.tar.gz" % URL
DOWNLOAD_URL = "%s/archive/0.0.14.tar.gz" % URL
FILES = ["README.rst", "CHANGELOG.rst"]
KEYWORDS = [
"python",
Expand Down Expand Up @@ -69,8 +69,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 pypi-mobans-pkg v0.0.13 " +
"Find 0.0.13 in changelog for more details")
GS_COMMAND = ("gs pypi-mobans-pkg v0.0.14 " +
"Find 0.0.14 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 007b9c0

Please sign in to comment.