File tree Expand file tree Collapse file tree 3 files changed +44
-4
lines changed
Expand file tree Collapse file tree 3 files changed +44
-4
lines changed Original file line number Diff line number Diff line change 44* .egg-info
55* .pyc
66* .so
7+ venv /
Original file line number Diff line number Diff line change 1+ # Whirlpool ChangeLog
2+
3+ ## [ Unreleased]
4+
5+ ### Added
6+ - Port to Python 3.
7+
8+ ### Fixed
9+ - Fix struct function declaration prototype warnings.
10+ - Fix pointer warnings.
11+
12+ ### Changed
13+ - Started using [ semantic versioning] [ semver ] together with
14+ [ keep a changelog] [ keepachangelog ] .
15+
16+ ## [ 0.3] - 2013-01-23
17+
18+ ### Added
19+ - Added the same interface as other Python digest algorithms (hashlib).
20+
21+ ### Changed
22+ - Created proper unit tests.
23+
24+ ### Deprecated
25+ - The ` hash() ` function is deprecated. Please transition to the hashlib
26+ interface and use ` new() ` and ` hexdigest() ` .
27+
28+ ## 0.2 - Never released
29+
30+ ## [ 0.1] - 2011-05-18
31+
32+ ### Added
33+ - Initial commit.
34+
35+ [ Unreleased ] : https://github.com/oohlaf/python-whirlpool
36+ [ 0.3 ] : https://github.com/oohlaf/python-whirlpool
37+ [ 0.1 ] : https://github.com/oohlaf/python-whirlpool
38+ [ semver ] : https://semver.org/spec/v2.0.0.html
39+ [ keepachangelog ] : http://keepachangelog.com/en/1.0.0/
Original file line number Diff line number Diff line change 1212doclines = __doc__ .split ("\n " )
1313
1414setup (name = "Whirlpool" ,
15- version = "0.4 .dev1" ,
15+ version = "1.0.0 .dev1" ,
1616 description = doclines [0 ],
1717 long_description = "\n " .join (doclines [2 :]),
1818 classifiers = [
2727 "Topic :: Security :: Cryptography" ,
2828 "Topic :: Software Development :: Libraries :: Python Modules" ,
2929 ],
30- url = "https://github.com/radiosilence /python-whirlpool" ,
31- maintainer = "James E. Cleveland " ,
32- maintainer_email = "[email protected] " ,
30+ url = "https://github.com/oohlaf /python-whirlpool" ,
31+ maintainer = "Olaf Conradi " ,
32+ maintainer_email = "[email protected] " ,
3333 license = "Public Domain" ,
3434 platforms = ["any" ],
3535 ext_modules = [Extension ("whirlpool" , ["main.c" ])],
You can’t perform that action at this time.
0 commit comments