Skip to content

Commit 5d29dc4

Browse files
committed
🥚 release official 0.0.1
1 parent 535844d commit 5d29dc4

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
author = u'C.W.'
2929

3030
# The short X.Y version
31-
version = u'0.0.1-rc1'
31+
version = u'0.0.1'
3232
# The full version, including alpha/beta/rc tags
33-
release = u'0.0.1-rc1'
33+
release = u'0.0.1'
3434

3535

3636
# -- General configuration ---------------------------------------------------

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

setup.py

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

1313
NAME = 'pypi-mobans-pkg'
1414
AUTHOR = 'C.W.'
15-
VERSION = '0.0.1-rc1'
15+
VERSION = '0.0.1'
1616
1717
LICENSE = 'public license'
1818
DESCRIPTION = (
1919
'Scaffolding mobans for your Python project.'
2020
)
2121
URL = 'https://github.com/moremoban/pypi-mobans-pkg'
22-
DOWNLOAD_URL = '%s/archive/0.0.1-rc1.tar.gz' % URL
22+
DOWNLOAD_URL = '%s/archive/0.0.1.tar.gz' % URL
2323
FILES = ['README.rst', 'CHANGELOG.rst']
2424
KEYWORDS = [
2525
'python'
@@ -49,8 +49,8 @@
4949
# You do not need to read beyond this line
5050
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
5151
sys.executable)
52-
GS_COMMAND = ('gs pypi-mobans-pkg v0.0.1-rc1 ' +
53-
"Find 0.0.1-rc1 in changelog for more details")
52+
GS_COMMAND = ('gs pypi-mobans-pkg v0.0.1 ' +
53+
"Find 0.0.1 in changelog for more details")
5454
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
5555
'Please install gease to enable it.')
5656
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)