Skip to content

Commit ce7a4df

Browse files
committed
refractor
1 parent 710f570 commit ce7a4df

6 files changed

Lines changed: 22 additions & 10 deletions

File tree

.docs/commandline_help.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
extensions
77
88
Options:
9-
--version Show the version and exit.
10-
-h, --help Show this message and exit.
9+
--version Show the version and exit.
10+
--traceback / --no-traceback return traceback information on cli
11+
-h, --help Show this message and exit.
1112
1213
Commands:
1314
info get program informations

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ install:
114114
- ${lib_bash_banner} "upgrading wheel"; ${cPREFIX} ${cPIP} install --upgrade wheel
115115
- ${lib_bash_banner} "upgrading pytest-pycodestyle"; ${cPREFIX} ${cPIP} install --upgrade "pytest-pycodestyle; python_version >= \"3.5\""
116116
- ${lib_bash_banner} "installing lib_log_utils"; ${cPREFIX} ${cPIP} install git+https://github.com/bitranox/lib_log_utils.git
117-
- ${lib_bash_banner} "uninstall typing"; ${cPREFIX} ${cPIP} uninstall typing
118117
- if [[ ${build_docs} == "True" ]]; then
119118
${lib_bash_banner} "installing rst_include"; ${cPREFIX} ${cPIP} install git+https://github.com/bitranox/rst_include.git;
120119
fi

CHANGES.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,17 @@ Changelog
55
- new MINOR version for added functionality in a backwards compatible manner
66
- new PATCH version for backwards compatible bug fixes
77

8-
0.3.3
8+
0.3.4
99
-----
1010
2020-07-15 : patch release
1111
- fix cli test
1212
- enable traceback option on cli
1313

14+
0.3.3
15+
-----
16+
2020-07-15 : patch release
17+
- fix minor typos
18+
1419
0.3.2
1520
-----
1621
2020-07-05 : patch release

README.rst

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,9 @@ Usage from Commandline
434434
extensions
435435
436436
Options:
437-
--version Show the version and exit.
438-
-h, --help Show this message and exit.
437+
--version Show the version and exit.
438+
--traceback / --no-traceback return traceback information on cli
439+
-h, --help Show this message and exit.
439440
440441
Commands:
441442
info get program informations
@@ -474,9 +475,15 @@ Changelog
474475
- new MINOR version for added functionality in a backwards compatible manner
475476
- new PATCH version for backwards compatible bug fixes
476477

478+
0.3.4
479+
-----
480+
2020-07-15 : patch release
481+
- fix cli test
482+
- enable traceback option on cli
483+
477484
0.3.3
478485
-----
479-
2020-07-05 : patch release
486+
2020-07-15 : patch release
480487
- fix minor typos
481488

482489
0.3.2

pathlib3x/__init__conf__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = 'pathlib3x'
22
title = 'backport of pathlib 3.10 to python 3.6, 3.7, 3.8, 3.9 with a few extensions'
3-
version = '0.3.3'
3+
version = '0.3.4'
44
url = 'https://github.com/bitranox/pathlib3x'
55
author = 'Robert Nowotny'
66
author_email = 'bitranox@gmail.com'
@@ -14,7 +14,7 @@ def print_info() -> None:
1414
1515
backport of pathlib 3.10 to python 3.6, 3.7, 3.8, 3.9 with a few extensions
1616
17-
Version : 0.3.3
17+
Version : 0.3.4
1818
Url : https://github.com/bitranox/pathlib3x
1919
Author : Robert Nowotny
2020
Email : bitranox@gmail.com""")

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def get_line_data(line: str) -> str:
8383

8484
setup_kwargs: Dict[str, Any] = dict()
8585
setup_kwargs['name'] = 'pathlib3x'
86-
setup_kwargs['version'] = '0.3.3'
86+
setup_kwargs['version'] = '0.3.4'
8787
setup_kwargs['url'] = 'https://github.com/bitranox/pathlib3x'
8888
setup_kwargs['packages'] = find_packages()
8989
setup_kwargs['package_data'] = {'pathlib3x': ['py.typed', '*.pyi', '__init__.pyi']}

0 commit comments

Comments
 (0)