Skip to content

Commit 368a31f

Browse files
committed
Mark 4.0 as released
1 parent 0d13454 commit 368a31f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Python-RSA changelog
22
========================================
33

4-
Version 4.0 - in development
4+
Version 4.0 - released 2018-09-16
55
----------------------------------------
66

77
- Removed deprecated modules:

doc/conf.py

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

4747
# General information about the project.
4848
project = u'Python-RSA'
49-
copyright = u'2011-2017, Sybren A. Stüvel'
49+
copyright = u'2011-2018, Sybren A. Stüvel'
5050

5151
# The version info for the project you're documenting, acts as replacement for
5252
# |version| and |release|, also used in various other places throughout the

rsa/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
VerificationError, find_signature_hash, sign_hash, compute_hash
2929

3030
__author__ = "Sybren Stuvel, Barry Mead and Yesudeep Mangalapilly"
31-
__date__ = "2016-03-29"
32-
__version__ = '4.0-alpha'
31+
__date__ = "2018-09-16"
32+
__version__ = '4.0'
3333

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

setup.py

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

2222
if __name__ == '__main__':
2323
setup(name='rsa',
24-
version='4.0-alpha',
24+
version='4.0',
2525
description='Pure-Python RSA implementation',
2626
long_description=long_description,
2727
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)