Skip to content

Commit 007b9c0

Browse files
committed
🥚 🎡 release 0.0.14
1 parent 984cd48 commit 007b9c0

File tree

8 files changed

+27
-16
lines changed

8 files changed

+27
-16
lines changed

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ parts/
2525
sdist/
2626
var/
2727
wheels/
28-
pip-wheel-metadata/
2928
share/python-wheels/
3029
*.egg-info/
3130
.installed.cfg
@@ -143,10 +142,6 @@ dmypy.json
143142
# Cython debug symbols
144143
cython_debug/
145144

146-
# static files generated from Django application using `collectstatic`
147-
media
148-
static
149-
150145
# VirtualEnv rules
151146
# Virtualenv
152147
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
@@ -431,6 +426,9 @@ tmtags
431426
!.vscode/extensions.json
432427
*.code-workspace
433428

429+
# Local History for Visual Studio Code
430+
.history/
431+
434432
# Xcode rules
435433
# Xcode
436434
#

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Change log
22
================================================================================
33

4+
0.0.14 - 03-05-2020
5+
--------------------------------------------------------------------------------
6+
7+
**Updated**
8+
9+
#. use pypi-mobans version 0.0.11
10+
411
0.0.13 - 03-05-2020
512
--------------------------------------------------------------------------------
613

changelog.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: "pypi-mobans"
22
organisation: moremoban
33
releases:
4+
- changes:
5+
- action: Updated
6+
details:
7+
- use pypi-mobans version 0.0.11
8+
date: 03-05-2020
9+
version: 0.0.14
410
- changes:
511
- action: Updated
612
details:

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
copyright = '2018-2020 Onni Software Ltd. and its contributors'
2626
author = 'C.W.'
2727
# The short X.Y version
28-
version = '0.0.13'
28+
version = '0.0.14'
2929
# The full version, including alpha/beta/rc tags
30-
release = '0.0.13'
30+
release = '0.0.14'
3131

3232
# -- General configuration ---------------------------------------------------
3333

pypi-mobans-pkg.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ organisation: "moremoban"
33
author: "C.W."
44
55
company: "Onni Software Ltd. and its contributors"
6-
version: "0.0.13"
7-
current_version: "0.0.13"
8-
release: "0.0.13"
6+
version: "0.0.14"
7+
current_version: "0.0.14"
8+
release: "0.0.14"
99
copyright_year: 2018-2020
1010
license: public license
1111
dependencies: []

pypi_mobans_pkg/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.0.13"
1+
__version__ = "0.0.14"
22
__author__ = "C.W."

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232

3333
NAME = "pypi-mobans-pkg"
3434
AUTHOR = "C.W."
35-
VERSION = "0.0.13"
35+
VERSION = "0.0.14"
3636
3737
LICENSE = "public license"
3838
DESCRIPTION = (
3939
"Scaffolding mobans for your Python project."
4040
)
4141
URL = "https://github.com/moremoban/pypi-mobans-pkg"
42-
DOWNLOAD_URL = "%s/archive/0.0.13.tar.gz" % URL
42+
DOWNLOAD_URL = "%s/archive/0.0.14.tar.gz" % URL
4343
FILES = ["README.rst", "CHANGELOG.rst"]
4444
KEYWORDS = [
4545
"python",
@@ -69,8 +69,8 @@
6969
EXTRAS_REQUIRE = {}
7070
# You do not need to read beyond this line
7171
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
72-
GS_COMMAND = ("gs pypi-mobans-pkg v0.0.13 " +
73-
"Find 0.0.13 in changelog for more details")
72+
GS_COMMAND = ("gs pypi-mobans-pkg v0.0.14 " +
73+
"Find 0.0.14 in changelog for more details")
7474
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7575
"Please install gease to enable it.")
7676
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)