Skip to content

Commit 80f0fc4

Browse files
committed
v2.0.2.1
-------- 2022-06-03: use io.encoding only on 3.10 upwards
1 parent ad64926 commit 80f0fc4

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

.docs/README_template.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pathlib3x
22
=========
33

44

5-
Version v2.0.2 as of 2022-06-03 see `Changelog`_
5+
Version v2.0.2.1 as of 2022-06-03 see `Changelog`_
66

77

88
.. include:: ./badges.rst

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Changelog
66
- new PATCH version for backwards compatible bug fixes
77

88

9+
v2.0.2.1
10+
--------
11+
2022-06-03: use io.encoding only on 3.10 upwards
12+
913
v2.0.2
1014
--------
1115
2022-06-03: define __fspath__ only on python >= 3.10

README.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pathlib3x
22
=========
33

44

5-
Version v2.0.2 as of 2022-06-03 see `Changelog`_
5+
Version v2.0.2.1 as of 2022-06-03 see `Changelog`_
66

77
|build_badge| |license| |pypi| |pypi-downloads| |black|
88

@@ -470,6 +470,10 @@ Changelog
470470
- new PATCH version for backwards compatible bug fixes
471471

472472

473+
v2.0.2.1
474+
--------
475+
2022-06-03: use io.encoding only on 3.10 upwards
476+
473477
v2.0.2
474478
--------
475479
2022-06-03: define __fspath__ only on python >= 3.10

pathlib3x/__init__conf__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "pathlib3x"
44
title = "backport of pathlib 3.10 to python 3.6, 3.7, 3.8, 3.9 with a few extensions"
5-
version = "v2.0.2"
5+
version = "v2.0.2.1"
66
url = "https://github.com/bitranox/pathlib3x"
77
author = "Robert Nowotny"
88
author_email = "bitranox@gmail.com"
@@ -17,7 +17,7 @@ def print_info() -> None:
1717
1818
backport of pathlib 3.10 to python 3.6, 3.7, 3.8, 3.9 with a few extensions
1919
20-
Version : v2.0.2
20+
Version : v2.0.2.1
2121
Url : https://github.com/bitranox/pathlib3x
2222
Author : Robert Nowotny
2323
Email : bitranox@gmail.com"""

setup.py

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

8585
setup_kwargs: Dict[str, Any] = dict()
8686
setup_kwargs["name"] = "pathlib3x"
87-
setup_kwargs["version"] = "v2.0.2"
87+
setup_kwargs["version"] = "v2.0.2.1"
8888
setup_kwargs["url"] = "https://github.com/bitranox/pathlib3x"
8989
setup_kwargs["packages"] = find_packages()
9090
setup_kwargs["package_data"] = {"pathlib3x": ["py.typed", "*.pyi", "__init__.pyi"]}

0 commit comments

Comments
 (0)