File tree Expand file tree Collapse file tree 7 files changed +30
-19
lines changed Expand file tree Collapse file tree 7 files changed +30
-19
lines changed Original file line number Diff line number Diff line change 1
1
Change log
2
2
================================================================================
3
3
4
+ 0.0.3 - tbd
5
+ --------------------------------------------------------------------------------
6
+
7
+ **Fix **
8
+
9
+ #. `#5 <https://github.com/moremoban/gitfs2/issues/5 >`_: support offline
10
+
4
11
0.0.2 - 2.10.2019
5
12
--------------------------------------------------------------------------------
6
13
7
- Fix
8
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
+ **Fix **
9
15
10
16
#. `#4 <https://github.com/moremoban/gitfs2/issues/4 >`_: failed to checkout more
11
17
than one git repo.
12
18
13
19
0.0.1 - 19.08.2019
14
20
--------------------------------------------------------------------------------
15
21
16
- first release
17
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22
+ **first release **
18
23
19
24
#. what a feat!
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Get a file inside a python package
28
28
>> > import fs
29
29
>> > git_fs = fs.open_fs(" git://github.com/moremobans/pypi-mobans.git!/templates" )
30
30
>> > 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 '
32
32
33
33
34
34
Get from a different branch
@@ -39,7 +39,7 @@ Get from a different branch
39
39
>> > import fs
40
40
>> > git_fs = fs.open_fs(" git://github.com/moremobans/pypi-mobans.git?branch=master!/templates" )
41
41
>> > 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 '
43
43
44
44
45
45
Checkout submodules recursively
Original file line number Diff line number Diff line change 1
1
name : gitfs2
2
2
organisation : moremoban
3
3
releases :
4
+ - changes :
5
+ - action : Fix
6
+ details :
7
+ - " `#5`: support offline"
8
+ version : 0.0.3
9
+ date : tbd
4
10
- changes :
5
11
- action : Fix
6
12
details :
Original file line number Diff line number Diff line change 2
2
#
3
3
# This file only contains a selection of the most common options. For a full
4
4
# list see the documentation:
5
- # http ://www.sphinx-doc.org/en/master/config
5
+ # https ://www.sphinx-doc.org/en/master/usage/configuration.html
6
6
7
7
# -- Path setup --------------------------------------------------------------
8
8
20
20
copyright = ''
21
21
author = 'C.W.'
22
22
# The short X.Y version
23
- version = '0.0.2 '
23
+ version = '0.0.3 '
24
24
# The full version, including alpha/beta/rc tags
25
- release = '0.0.2 '
25
+ release = '0.0.3 '
26
26
27
27
# -- General configuration ---------------------------------------------------
28
28
59
59
# Add any paths that contain custom static files (such as style sheets) here,
60
60
# relative to this directory. They are copied after the builtin static files,
61
61
# so a file named "default.css" will overwrite the builtin "default.css".
62
- html_static_path = ['static' ]
62
+ html_static_path = ['static' ]
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ organisation: "moremoban"
3
3
author : " C.W."
4
4
5
5
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 "
9
9
copyright_year : 2019
10
10
license : MIT
11
11
dependencies :
Original file line number Diff line number Diff line change 1
- __version__ = "0.0.2 "
1
+ __version__ = "0.0.3 "
2
2
__author__ = "C.W."
Original file line number Diff line number Diff line change 29
29
30
30
NAME = "gitfs2"
31
31
AUTHOR = "C.W."
32
- VERSION = "0.0.2 "
32
+ VERSION = "0.0.3 "
33
33
34
34
LICENSE = "MIT"
35
35
ENTRY_POINTS = {
41
41
"Python file system 2 over GitPython"
42
42
)
43
43
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
45
45
FILES = ["README.rst" , "CHANGELOG.rst" ]
46
46
KEYWORDS = [
47
47
"python" ,
78
78
}
79
79
# You do not need to read beyond this line
80
80
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" )
83
83
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
84
84
"Please install gease to enable it." )
85
85
UPLOAD_FAILED_MSG = (
@@ -121,7 +121,7 @@ def run(self):
121
121
self .status (NO_GS_MESSAGE )
122
122
if run_status :
123
123
if os .system (PUBLISH_COMMAND ) != 0 :
124
- self .status (UPLOAD_FAILED_MSG % PUBLISH_COMMAND )
124
+ self .status (UPLOAD_FAILED_MSG )
125
125
126
126
sys .exit ()
127
127
You can’t perform that action at this time.
0 commit comments