Skip to content

Commit 6b6d297

Browse files
committed
Bumped to version 3.4
1 parent bd4e213 commit 6b6d297

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

CHANGELOG.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Python-RSA changelog
22
========================================
33

44

5-
Version 3.4 - in development
5+
Version 3.4 - released 2006-03-17
66
----------------------------------------
77

88
- Moved development to Github: https://github.com/sybrenstuvel/python-rsa
@@ -13,10 +13,10 @@ Version 3.4 - in development
1313
- Deprecated the old rsa._version133 and rsa._version200 submodules, they will be
1414
completely removed in version 4.0.
1515
- Add an 'exponent' argument to key.newkeys()
16-
- Fixed bugs #12, #14, #27, #30, #49
1716
- Switched from Solovay-Strassen to Miller-Rabin primality testing, to
1817
comply with NIST FIPS 186-4 [4] as probabilistic primality test
1918
(Appendix C, subsection C.3):
19+
- Fixed bugs #12, #14, #27, #30, #49
2020

2121
[1] https://travis-ci.org/sybrenstuvel/python-rsa
2222
[2] https://coveralls.io/github/sybrenstuvel/python-rsa

rsa/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
VerificationError
3030

3131
__author__ = "Sybren Stuvel, Barry Mead and Yesudeep Mangalapilly"
32-
__date__ = "2016-01-13"
33-
__version__ = '3.4-beta1'
32+
__date__ = "2016-03-17"
33+
__version__ = '3.4'
3434

3535
# Do doctest if we're run directly
3636
if __name__ == "__main__":

setup.py

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

1919
if __name__ == '__main__':
2020
setup(name='rsa',
21-
version='3.3',
21+
version='3.4',
2222
description='Pure-Python RSA implementation',
2323
author='Sybren A. Stuvel',
2424
author_email='sybren@stuvel.eu',

0 commit comments

Comments
 (0)