Skip to content

Commit

Permalink
Merge pull request #118 from ttmc/last_pr_before_v0.8.0
Browse files Browse the repository at this point in the history
Updated version.py & CHANGELOG.rst to prep for release of v0.8.0
  • Loading branch information
ttmc authored Oct 20, 2018
2 parents c34a177 + 176e3ff commit a9c8412
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
Changelog
=========

0.8.0 (2018-10-20)
------------------

Changed
^^^^^^^

* ``crypto.ed25519_generate_key_pair()`` now supports an optional keyword argument ``seed`` to support deterministic generation
of a keypair from a seed.
Example use: ``crypto.ed25519_generate_key_pair(seed=seed_value)``
Note that the value of ``seed`` must be a 32-byte bytes object.
Thanks to external contributor @excerebrose for adding this functionality in pull request #487.
* Changed setup.py to use ``PyNaCl~=1.1.0`` again, because 1.2.1 was breaking software that uses the cryptoconditions package.

0.7.3 (2018-09-04)
------------------

Changed
^^^^^^^
* Update setup.py to use ``PyNaCl~=1.2.1``
* Update setup.py to use ``PyNaCl~=1.2.1``

0.7.2 (2018-08-31)
------------------
Expand Down
4 changes: 2 additions & 2 deletions cryptoconditions/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.7.3'
__short_version__ = '0.7'
__version__ = '0.8.0'
__short_version__ = '0.8'

0 comments on commit a9c8412

Please sign in to comment.