Skip to content

Commit

Permalink
Changelog for release 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hardbyte committed Jun 2, 2016
1 parent 8caff7f commit 34476e1
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
Version 1.2.3 (2015-06-02)
=====

Documentation and bugfix release.

Features
----

- Better support for alternative encoding schemes (including a new example). Public key now has
an `encrypt_encoded` method. `decrypt_encoded` optionally takes an `Encoding` class.
- Command line tool documentation.
- Much expanded notes on key serialisation.

Bug Fixes
----

- Several tests for encrypt/decrypt only encoded/decoded.


Version 1.2.0 (2015-01-12)
=====

Expand Down
1 change: 1 addition & 0 deletions phe/paillier.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

DEFAULT_KEYSIZE = 2048


def generate_paillier_keypair(private_keyring=None, n_length=DEFAULT_KEYSIZE):
"""Return a new :class:`PaillierPublicKey` and :class:`PaillierPrivateKey`.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
def find_version():
# Note the version is also in the docs/conf.py file
# We use semantic versioning - semver.org
return "1.2.2"
return "1.2.3"


setup(
Expand Down

0 comments on commit 34476e1

Please sign in to comment.