Skip to content

Commit 793bf14

Browse files
committed
refractor
1 parent 45d8ea1 commit 793bf14

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

README.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,11 +475,16 @@ Changelog
475475
- new MINOR version for added functionality in a backwards compatible manner
476476
- new PATCH version for backwards compatible bug fixes
477477

478+
0.3.5
479+
-----
480+
2020-07-15 : development
481+
-
482+
478483
0.3.4
479484
-----
480485
2020-07-15 : patch release
481486
- fix cli test
482-
- enable traceback option on cli
487+
- enable traceback option on cli errors
483488

484489
0.3.3
485490
-----

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.4'
3+
version = '0.3.5'
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.4
17+
Version : 0.3.5
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.4'
86+
setup_kwargs['version'] = '0.3.5'
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)