Skip to content

Commit 4b48517

Browse files
committedAug 19, 2019
🥚 🎡 release 0.0.1
1 parent 4dc63a7 commit 4b48517

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed
 

‎README.rst

+9-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,15 @@ Plus, the intention is never to write to a repository.
6767
Installation
6868
================================================================================
6969

70-
You can get it:
70+
71+
You can install gitfs2 via pip:
72+
73+
.. code-block:: bash
74+
75+
$ pip install gitfs2
76+
77+
78+
or clone it and install it:
7179

7280
.. code-block:: bash
7381

‎docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# The short X.Y version
2323
version = '0.0.1'
2424
# The full version, including alpha/beta/rc tags
25-
release = '0.0.0'
25+
release = '0.0.1'
2626

2727
# -- General configuration ---------------------------------------------------
2828

‎gitfs2.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ contact: "wangc_2011@hotmail.com"
55
company: "moban dev team"
66
version: "0.0.1"
77
current_version: "0.0.1"
8-
release: "0.0.0"
8+
release: "0.0.1"
99
copyright_year: 2019
1010
license: MIT
1111
dependencies:

‎setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"Python file system 2 over GitPython"
4242
)
4343
URL = "https://github.com/moremoban/gitfs2"
44-
DOWNLOAD_URL = "%s/archive/0.0.0.tar.gz" % URL
44+
DOWNLOAD_URL = "%s/archive/0.0.1.tar.gz" % URL
4545
FILES = ["README.rst", "CHANGELOG.rst"]
4646
KEYWORDS = [
4747
"python",
@@ -78,8 +78,8 @@
7878
}
7979
# You do not need to read beyond this line
8080
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
81-
GS_COMMAND = ("gs gitfs2 v0.0.0 " +
82-
"Find 0.0.0 in changelog for more details")
81+
GS_COMMAND = ("gs gitfs2 v0.0.1 " +
82+
"Find 0.0.1 in changelog for more details")
8383
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
8484
"Please install gease to enable it.")
8585
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)
Please sign in to comment.