Skip to content

Commit cedefea

Browse files
committed
Retagged 4.4 as 4.6 and added bit of an explanation to CHANGELOG.md
1 parent 9a70b00 commit cedefea

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

CHANGELOG.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
11
# Python-RSA changelog
22

33

4-
## Version 4.4.1 - released 2020-06-12
4+
## Version 4.4 & 4.6 - released 2020-06-12
55

6-
This makes Python 3.8 support explicit in `setup.py`.
7-
8-
9-
## Version 4.4 - released 2020-06-12
10-
11-
Version 4.3 is almost a re-tagged release of version 4.0. It requires Python
12-
3.5+. To avoid older Python installations from trying to upgrade to RSA 4.4,
13-
this is now made explicit in the `python_requires` argument in `setup.py`.
6+
Version 4.4 and 4.6 are almost a re-tagged release of version 4.2. It requires
7+
Python 3.5+. To avoid older Python installations from trying to upgrade to RSA
8+
4.4, this is now made explicit in the `python_requires` argument in `setup.py`.
9+
There was a mistake releasing 4.4 as "3.5+ only", which made it necessary to
10+
retag 4.4 as 4.6 as well.
1411

1512
No functional changes compared to version 4.2.
1613

1714

1815
## Version 4.3 - released 2020-06-12
1916

20-
Version 4.3 is almost a re-tagged release of version 4.0. It is the last to
21-
support Python 2.7. This is now made explicit in the `python_requires` argument
22-
in `setup.py`. Python 3.4 is not supported by this release.
17+
Version 4.3 and 4.5 are almost a re-tagged release of version 4.0. It is the
18+
last to support Python 2.7. This is now made explicit in the `python_requires`
19+
argument in `setup.py`. Python 3.4 is not supported by this release. There was a
20+
mistake releasing 4.4 as "3.5+ only", which made it necessary to retag 4.3 as
21+
4.5 as well.
2322

2423
Two security fixes have also been backported, so 4.3 = 4.0 + these two fixes.
2524

rsa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
__author__ = "Sybren Stuvel, Barry Mead and Yesudeep Mangalapilly"
2929
__date__ = '2020-06-12'
30-
__version__ = '4.4.1'
30+
__version__ = '4.6'
3131

3232
# Do doctest if we're run directly
3333
if __name__ == "__main__":

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
if __name__ == '__main__':
2727
setup(name='rsa',
28-
version='4.4.1',
28+
version='4.6',
2929
description='Pure-Python RSA implementation',
3030
long_description=long_description,
3131
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)