Skip to content

Commit e125113

Browse files
authored
Merge pull request #32 from roskakori/31-fix-description-of-version-compatibility
#31 Fix description of version compatibility
2 parents 4ae3b7c + fc4a7c7 commit e125113

File tree

5 files changed

+35
-15
lines changed

5 files changed

+35
-15
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

3+
## Version 2.0.1, 2026-03-03
4+
5+
This is a pure documentation update that fixes the confusing description of version compatibility in the README (see [#31](https://github.com/roskakori/CodecMapper/issues/31)).
6+
37
## Version 2.0.0, 2026-02-25
48

59
This is a pure technical release that does not change the functionality of the package.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ $ git push
116116
Tag a release:
117117

118118
```console
119-
$ git tag --annotate --message "Tagged version 2.x.x." v2.x.x
119+
$ git tag --annotate --message "Tag version 2.x.x" v2.x.x
120120
$ git push --tags
121121
```
122122

ebcdic/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
This package requires Python 3.9 or later.
88

9-
For compatibility with Python 2.7 to 3.3, use [version 1.1.1](https://pypi.org/project/ebcdic/1.1.1/).
9+
For compatibility with Python 2.7 or from 3.4 to 3.8, use [version 1.1.1](https://pypi.org/project/ebcdic/1.1.1/).
1010

11-
For compatibility with Python 2.6 to 3.2, use [version 1.0.0](https://pypi.org/project/ebcdic/1.0.0/).
11+
For compatibility with Python 2.6 or from 3.1 to 3.3, use [version 1.0.0](https://pypi.org/project/ebcdic/1.0.0/).
1212

1313
## Installation
1414

ebcdic/ebcdic/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "2.0.0"
1+
__version__ = "2.0.1"
22
__version_info__ = tuple(int(item) if item.isdigit() else item for item in __version__.split("."))

ebcdic/uv.lock

Lines changed: 27 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)