Skip to content

Commit

Permalink
🥚 🎡 release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Aug 19, 2019
1 parent 4dc63a7 commit 4b48517
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,15 @@ Plus, the intention is never to write to a repository.
Installation
================================================================================

You can get it:

You can install gitfs2 via pip:

.. code-block:: bash
$ pip install gitfs2
or clone it and install it:

.. code-block:: bash
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# The short X.Y version
version = '0.0.1'
# The full version, including alpha/beta/rc tags
release = '0.0.0'
release = '0.0.1'

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

Expand Down
2 changes: 1 addition & 1 deletion gitfs2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ contact: "wangc_2011@hotmail.com"
company: "moban dev team"
version: "0.0.1"
current_version: "0.0.1"
release: "0.0.0"
release: "0.0.1"
copyright_year: 2019
license: MIT
dependencies:
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"Python file system 2 over GitPython"
)
URL = "https://github.com/moremoban/gitfs2"
DOWNLOAD_URL = "%s/archive/0.0.0.tar.gz" % URL
DOWNLOAD_URL = "%s/archive/0.0.1.tar.gz" % URL
FILES = ["README.rst", "CHANGELOG.rst"]
KEYWORDS = [
"python",
Expand Down Expand Up @@ -78,8 +78,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 gitfs2 v0.0.0 " +
"Find 0.0.0 in changelog for more details")
GS_COMMAND = ("gs gitfs2 v0.0.1 " +
"Find 0.0.1 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 4b48517

Please sign in to comment.