Bump version: 5.2.0 → 5.3.0

pull/2769/head v5.3.0
Kieran Prasch 2021-06-17 13:13:48 -07:00
parent a9c76820ed
commit a0926112ad
No known key found for this signature in database
GPG Key ID: 199AB839D4125A62
23 changed files with 50 additions and 22 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.2.0
current_version = 5.3.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))?

View File

@ -47,7 +47,7 @@ author = 'NuCypher'
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '5.2.0'
release = '5.3.0'
# -- General configuration ---------------------------------------------------

View File

@ -4,6 +4,53 @@ Releases
.. towncrier release notes start
v5.3.0 (2021-06-17)
-------------------
Features
~~~~~~~~
- PolicyManager: creating multiple policies in one tx (`#2619 <https://github.com/nucypher/nucypher/issues/2619>`__)
- Adds a new CLI command to show past and present staking rewards, "stake rewards show". (`#2634 <https://github.com/nucypher/nucypher/issues/2634>`__)
- Adds "https://closest-seed.nucypher.network" and "https://mainnet.nucypher.network" as a fallback teacher nodes for mainnet. (`#2657 <https://github.com/nucypher/nucypher/issues/2657>`__)
- Whitespaces in character nicknames are now implicitly replaced with an underscore ("_"). (`#2672 <https://github.com/nucypher/nucypher/issues/2672>`__)
- Added timestamp and date columns to csv output of "nucypher status events" command. (`#2680 <https://github.com/nucypher/nucypher/issues/2680>`__)
- Ursula will now check for active stakes on startup. (`#2688 <https://github.com/nucypher/nucypher/issues/2688>`__)
- Add sub-stake boost information to staking CLI. (`#2690 <https://github.com/nucypher/nucypher/issues/2690>`__)
Bugfixes
~~~~~~~~
- Fixed issues where failing transactions would result in incorrect token allowance and prevent creation of new stakes. (`#2673 <https://github.com/nucypher/nucypher/issues/2673>`__)
- examples/run_demo_ursula_fleet.py - Clean up each DB on shutdown. (`#2681 <https://github.com/nucypher/nucypher/issues/2681>`__)
- Fix a performance regression in ``FleetSensor`` where nodes were matured prematurely (pun not intended) (`#2709 <https://github.com/nucypher/nucypher/issues/2709>`__)
Improved Documentation
~~~~~~~~~~~~~~~~~~~~~~
- Include annotated description of the worker status page. (`#2665 <https://github.com/nucypher/nucypher/issues/2665>`__)
- Update service fee pricing to reflect correct per period rate since periods are now 7-days. (`#2677 <https://github.com/nucypher/nucypher/issues/2677>`__)
- Add documentation about calculation of staking rewards. (`#2690 <https://github.com/nucypher/nucypher/issues/2690>`__)
Deprecations and Removals
~~~~~~~~~~~~~~~~~~~~~~~~~
- Moves "stake collect-reward" to "stake rewards withdraw" command. (`#2634 <https://github.com/nucypher/nucypher/issues/2634>`__)
- Remove IndisputableEvidence (`#2699 <https://github.com/nucypher/nucypher/issues/2699>`__)
Misc
~~~~
- Registry for NuCypher DAO entities. (`#2426 <https://github.com/nucypher/nucypher/issues/2426>`__)
- Added code used to generate the DAO Proposal #1, for reference purposes. (`#2616 <https://github.com/nucypher/nucypher/issues/2616>`__)
- Improves password collection hints while running ``init`` commands. (`#2662 <https://github.com/nucypher/nucypher/issues/2662>`__)
- Extend policy probationary period until August 31st, 2021. No policies may be created on the network beyond this date. (`#2716 <https://github.com/nucypher/nucypher/issues/2716>`__)
v5.2.0 (2021-04-26)
-------------------

View File

@ -1 +0,0 @@
Registry for NuCypher DAO entities.

View File

@ -1 +0,0 @@
Added code used to generate the DAO Proposal #1, for reference purposes.

View File

@ -1 +0,0 @@
PolicyManager: creating multiple policies in one tx

View File

@ -1 +0,0 @@
Adds a new CLI command to show past and present staking rewards, "stake rewards show".

View File

@ -1 +0,0 @@
Moves "stake collect-reward" to "stake rewards withdraw" command.

View File

@ -1 +0,0 @@
Adds "https://closest-seed.nucypher.network" and "https://mainnet.nucypher.network" as a fallback teacher nodes for mainnet.

View File

@ -1 +0,0 @@
Improves password collection hints while running ``init`` commands.

View File

@ -1 +0,0 @@
Include annotated description of the worker status page.

View File

@ -1 +0,0 @@
Whitespaces in character nicknames are now implicitly replaced with an underscore ("_").

View File

@ -1 +0,0 @@
Fixed issues where failing transactions would result in incorrect token allowance and prevent creation of new stakes.

View File

@ -1 +0,0 @@
Update service fee pricing to reflect correct per period rate since periods are now 7-days.

View File

@ -1 +0,0 @@
Added timestamp and date columns to csv output of "nucypher status events" command.

View File

@ -1 +0,0 @@
examples/run_demo_ursula_fleet.py - Clean up each DB on shutdown.

View File

@ -1 +0,0 @@
Ursula will now check for active stakes on startup.

View File

@ -1 +0,0 @@
Add documentation about calculation of staking rewards.

View File

@ -1 +0,0 @@
Add sub-stake boost information to staking CLI.

View File

@ -1 +0,0 @@
Remove IndisputableEvidence

View File

@ -1 +0,0 @@
Fix a performance regression in ``FleetSensor`` where nodes were matured prematurely (pun not intended)

View File

@ -1 +0,0 @@
Extend policy probationary period until August 31st, 2021. No policies may be created on the network beyond this date.

View File

@ -31,7 +31,7 @@ __url__ = "https://github.com/nucypher/nucypher"
__summary__ = 'A proxy re-encryption network to empower privacy in decentralized systems.'
__version__ = "5.2.0"
__version__ = "5.3.0"
__author__ = "NuCypher"