mirror of https://github.com/nucypher/nucypher.git
parent
a86cac0bf6
commit
00bb3c7e82
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 4.8.2
|
||||
current_version = 5.0.0
|
||||
commit = True
|
||||
tag = True
|
||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))?
|
||||
|
|
|
@ -47,7 +47,7 @@ author = 'NuCypher'
|
|||
# The short X.Y version
|
||||
version = ''
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '4.8.2'
|
||||
release = '5.0.0'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
|
@ -4,6 +4,40 @@ Releases
|
|||
|
||||
.. towncrier release notes start
|
||||
|
||||
v5.0.0 (2021-04-14)
|
||||
-------------------
|
||||
|
||||
Features
|
||||
~~~~~~~~
|
||||
|
||||
- Increase period duration in contracts and handle migration of current stakes to new format. (`#2549 <https://github.com/nucypher/nucypher/issues/2549>`__)
|
||||
- DAO proposal #1: Improve staker P/L by increasing period duration. (`#2594 <https://github.com/nucypher/nucypher/issues/2594>`__)
|
||||
- Refinements for pool staking contract (`#2596 <https://github.com/nucypher/nucypher/issues/2596>`__)
|
||||
- New standalone geth fullnode ansible playbook. (`#2624 <https://github.com/nucypher/nucypher/issues/2624>`__)
|
||||
|
||||
|
||||
Bugfixes
|
||||
~~~~~~~~
|
||||
|
||||
- Accommodate migrated period duration in CLI UX. (`#2614 <https://github.com/nucypher/nucypher/issues/2614>`__)
|
||||
- cloudworkers more throughoughly cleans up diskspace before updates. (`#2618 <https://github.com/nucypher/nucypher/issues/2618>`__)
|
||||
- Bob now accepts provider_uri as an optional parameter (`#2626 <https://github.com/nucypher/nucypher/issues/2626>`__)
|
||||
- Add a default gas limit multiplier of 1.15 for all outgoing ETH transactions (`#2637 <https://github.com/nucypher/nucypher/issues/2637>`__)
|
||||
|
||||
|
||||
Improved Documentation
|
||||
~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
- Document staking smart contract API and the base staking pool implementation (``PoolingStakingContractV2``). (`#2597 <https://github.com/nucypher/nucypher/issues/2597>`__)
|
||||
|
||||
|
||||
Misc
|
||||
~~~~
|
||||
|
||||
- Change filepath delimiter to dot (".") in Card Storage API (`#2628 <https://github.com/nucypher/nucypher/issues/2628>`__)
|
||||
- Use constant for loopback address across the codebase. (`#2629 <https://github.com/nucypher/nucypher/issues/2629>`__)
|
||||
|
||||
|
||||
v4.8.2 (2021-03-25)
|
||||
-------------------
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Increase period duration in contracts and handle migration of current stakes to new format.
|
|
@ -1 +0,0 @@
|
|||
DAO proposal #1: Improve staker P/L by increasing period duration.
|
|
@ -1 +0,0 @@
|
|||
Refinements for pool staking contract
|
|
@ -1 +0,0 @@
|
|||
Document staking smart contract API and the base staking pool implementation (``PoolingStakingContractV2``).
|
|
@ -1 +0,0 @@
|
|||
Accommodate migrated period duration in CLI UX.
|
|
@ -1 +0,0 @@
|
|||
cloudworkers more throughoughly cleans up diskspace before updates.
|
|
@ -1 +0,0 @@
|
|||
New standalone geth fullnode ansible playbook.
|
|
@ -1 +0,0 @@
|
|||
Bob now accepts provider_uri as an optional parameter
|
|
@ -1 +0,0 @@
|
|||
Change filepath delimiter to dot (".") in Card Storage API
|
|
@ -1 +0,0 @@
|
|||
Use constant for loopback address across the codebase.
|
|
@ -1 +0,0 @@
|
|||
Add a default gas limit multiplier of 1.15 for all outgoing ETH transactions
|
|
@ -31,7 +31,7 @@ __url__ = "https://github.com/nucypher/nucypher"
|
|||
|
||||
__summary__ = 'A proxy re-encryption network to empower privacy in decentralized systems.'
|
||||
|
||||
__version__ = "4.8.2"
|
||||
__version__ = "5.0.0"
|
||||
|
||||
__author__ = "NuCypher"
|
||||
|
||||
|
|
Loading…
Reference in New Issue