Skip to content

Commit cdfd7a7

Browse files
committed
Transfer ownership to Olaf Conradi
Also added a separate change log file.
1 parent d945021 commit cdfd7a7

File tree

3 files changed

+44
-4
lines changed

3 files changed

+44
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ MANIFEST
44
*.egg-info
55
*.pyc
66
*.so
7+
venv/

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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/

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
doclines = __doc__.split("\n")
1313

1414
setup(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=[
@@ -27,9 +27,9 @@
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"])],

0 commit comments

Comments
 (0)