Skip to content

Commit 599ec71

Browse files
committed
✨ take the bug fix
1 parent dcf10a0 commit 599ec71

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

CHANGELOG.rst

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

4-
0.0.2.1 - 08-11-2018
4+
0.0.3 - 08-11-2018
55
--------------------------------------------------------------------------------
66

77
Updated
88
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
99

10-
#. use pypi-mobans version 0.0.2
10+
#. use pypi-mobans version 0.0.2 and 0.0.3
1111
#. added License file
1212

1313
0.0.2 - 08-11-2018

changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ releases:
44
- changes:
55
- action: Updated
66
details:
7-
- use pypi-mobans version 0.0.2
7+
- use pypi-mobans version 0.0.2 and 0.0.3
88
- added License file
99
date: 08-11-2018
10-
version: 0.0.2.1
10+
version: 0.0.3
1111
- changes:
1212
- action: First release
1313
details:

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.2.1"
7-
current_version: "0.0.2.1"
8-
release: "0.0.2.1"
6+
version: "0.0.3"
7+
current_version: "0.0.3"
8+
release: "0.0.3"
99
copyright_year: 2018-2019
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.2.1"
1+
__version__ = "0.0.3"
22
__author__ = "C.W."

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import os
55
import sys
66
import codecs
7+
import locale
78
from shutil import rmtree
89

910
from setuptools import Command, setup, find_packages
@@ -28,14 +29,14 @@
2829

2930
NAME = 'pypi-mobans-pkg'
3031
AUTHOR = 'C.W.'
31-
VERSION = '0.0.2.1'
32+
VERSION = '0.0.3'
3233
3334
LICENSE = 'public license'
3435
DESCRIPTION = (
3536
'Scaffolding mobans for your Python project.'
3637
)
3738
URL = 'https://github.com/moremoban/pypi-mobans-pkg'
38-
DOWNLOAD_URL = '%s/archive/0.0.2.1.tar.gz' % URL
39+
DOWNLOAD_URL = '%s/archive/0.0.3.tar.gz' % URL
3940
FILES = ['README.rst', 'CHANGELOG.rst']
4041
KEYWORDS = [
4142
'python',
@@ -65,8 +66,8 @@
6566
# You do not need to read beyond this line
6667
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
6768
sys.executable)
68-
GS_COMMAND = ('gs pypi-mobans-pkg v0.0.2.1 ' +
69-
"Find 0.0.2.1 in changelog for more details")
69+
GS_COMMAND = ('gs pypi-mobans-pkg v0.0.3 ' +
70+
"Find 0.0.3 in changelog for more details")
7071
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
7172
'Please install gease to enable it.')
7273
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)