Skip to content

Commit

Permalink
🥚 🎡 release 0.0.1-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Aug 7, 2018
1 parent b99b231 commit 2604d29
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
10 changes: 9 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,15 @@ The project packages `pypi-mobans <https://github.com/moremoban/pypi>`_ and dist
Installation
================================================================================

You can get it:

You can install pypi-mobans-pkg via pip:

.. code-block:: bash
$ pip install pypi-mobans-pkg
or clone it and install it:

.. code-block:: bash
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
author = u'C.W.'

# The short X.Y version
version = u'0.0.0'
version = u'0.0.1-rc1'
# The full version, including alpha/beta/rc tags
release = u'0.0.1'
release = u'0.0.1-rc1'


# -- 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."
version: "0.0.1"
current_version: "0.0.1"
release: "0.0.0"
version: "0.0.1-rc1"
current_version: "0.0.1-rc1"
release: "0.0.1-rc1"
copyright_year: 2018
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.1"
__version__ = "0.0.1-rc1"
__author__ = "C.W."
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@

NAME = 'pypi-mobans-pkg'
AUTHOR = 'C.W.'
VERSION = '0.0.1'
VERSION = '0.0.1-rc1'
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.0.tar.gz' % URL
DOWNLOAD_URL = '%s/archive/0.0.1-rc1.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'python'
Expand Down Expand Up @@ -49,8 +49,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.0 ' +
"Find 0.0.0 in changelog for more details")
GS_COMMAND = ('gs pypi-mobans-pkg v0.0.1-rc1 ' +
"Find 0.0.1-rc1 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 2604d29

Please sign in to comment.