Skip to content

Commit 4423cf1

Browse files
committed
✨ release 0.0.3
1 parent 45f3d0e commit 4423cf1

File tree

7 files changed

+30
-19
lines changed

7 files changed

+30
-19
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
Change log
22
================================================================================
33

4+
0.0.3 - tbd
5+
--------------------------------------------------------------------------------
6+
7+
**Fix**
8+
9+
#. `#5 <https://github.com/moremoban/gitfs2/issues/5>`_: support offline
10+
411
0.0.2 - 2.10.2019
512
--------------------------------------------------------------------------------
613

7-
Fix
8-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14+
**Fix**
915

1016
#. `#4 <https://github.com/moremoban/gitfs2/issues/4>`_: failed to checkout more
1117
than one git repo.
1218

1319
0.0.1 - 19.08.2019
1420
--------------------------------------------------------------------------------
1521

16-
first release
17-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22+
**first release**
1823

1924
#. what a feat!

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Get a file inside a python package
2828
>>> import fs
2929
>>> git_fs = fs.open_fs("git://github.com/moremobans/pypi-mobans.git!/templates")
3030
>>> git_fs.readtext("_version.py.jj2")
31-
'__version__ = "0.0.2"\n__author__ = "C.W."\n'
31+
'__version__ = "0.0.3"\n__author__ = "C.W."\n'
3232
3333
3434
Get from a different branch
@@ -39,7 +39,7 @@ Get from a different branch
3939
>>> import fs
4040
>>> git_fs = fs.open_fs("git://github.com/moremobans/pypi-mobans.git?branch=master!/templates")
4141
>>> git_fs.read("_version.py.jj2")
42-
'__version__ = "0.0.2"\n__author__ = "C.W."\n'
42+
'__version__ = "0.0.3"\n__author__ = "C.W."\n'
4343
4444
4545
Checkout submodules recursively

changelog.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: gitfs2
22
organisation: moremoban
33
releases:
4+
- changes:
5+
- action: Fix
6+
details:
7+
- "`#5`: support offline"
8+
version: 0.0.3
9+
date: tbd
410
- changes:
511
- action: Fix
612
details:

docs/source/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# This file only contains a selection of the most common options. For a full
44
# list see the documentation:
5-
# http://www.sphinx-doc.org/en/master/config
5+
# https://www.sphinx-doc.org/en/master/usage/configuration.html
66

77
# -- Path setup --------------------------------------------------------------
88

@@ -20,9 +20,9 @@
2020
copyright = ''
2121
author = 'C.W.'
2222
# The short X.Y version
23-
version = '0.0.2'
23+
version = '0.0.3'
2424
# The full version, including alpha/beta/rc tags
25-
release = '0.0.2'
25+
release = '0.0.3'
2626

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

@@ -59,4 +59,4 @@
5959
# Add any paths that contain custom static files (such as style sheets) here,
6060
# relative to this directory. They are copied after the builtin static files,
6161
# so a file named "default.css" will overwrite the builtin "default.css".
62-
html_static_path = ['static']
62+
html_static_path = ['static']

gitfs2.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: "moban dev team"
6-
version: "0.0.2"
7-
current_version: "0.0.2"
8-
release: "0.0.2"
6+
version: "0.0.3"
7+
current_version: "0.0.3"
8+
release: "0.0.3"
99
copyright_year: 2019
1010
license: MIT
1111
dependencies:

gitfs2/_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+
__version__ = "0.0.3"
22
__author__ = "C.W."

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
NAME = "gitfs2"
3131
AUTHOR = "C.W."
32-
VERSION = "0.0.2"
32+
VERSION = "0.0.3"
3333
3434
LICENSE = "MIT"
3535
ENTRY_POINTS = {
@@ -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.2.tar.gz" % URL
44+
DOWNLOAD_URL = "%s/archive/0.0.3.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.2 " +
82-
"Find 0.0.2 in changelog for more details")
81+
GS_COMMAND = ("gs gitfs2 v0.0.3 " +
82+
"Find 0.0.3 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 = (
@@ -121,7 +121,7 @@ def run(self):
121121
self.status(NO_GS_MESSAGE)
122122
if run_status:
123123
if os.system(PUBLISH_COMMAND) != 0:
124-
self.status(UPLOAD_FAILED_MSG % PUBLISH_COMMAND)
124+
self.status(UPLOAD_FAILED_MSG)
125125

126126
sys.exit()
127127

0 commit comments

Comments
 (0)