mirror of https://github.com/nucypher/nucypher.git
parent
f930757f69
commit
a580a46280
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 4.6.0
|
current_version = 4.7.0
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))?
|
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
|
# The short X.Y version
|
||||||
version = ''
|
version = ''
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
release = '4.6.0'
|
release = '4.7.0'
|
||||||
|
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
|
|
|
@ -4,6 +4,56 @@ Releases
|
||||||
|
|
||||||
.. towncrier release notes start
|
.. towncrier release notes start
|
||||||
|
|
||||||
|
v4.7.0 (2021-03-02)
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Features
|
||||||
|
~~~~~~~~
|
||||||
|
|
||||||
|
- New preferable base pooling contract (`#2544 <https://github.com/nucypher/nucypher/issues/2544>`__)
|
||||||
|
- The output of `nucypher stake events` can be written to a csv file for simpler staker accounting. (`#2548 <https://github.com/nucypher/nucypher/issues/2548>`__)
|
||||||
|
- Simplifies CLI usage with optional interactive collection of all CLI parameters used during grant, encrypt, and retrieve. (`#2551 <https://github.com/nucypher/nucypher/issues/2551>`__)
|
||||||
|
- Improved status codes and error messages for various PRE http endpoints (`#2562 <https://github.com/nucypher/nucypher/issues/2562>`__)
|
||||||
|
- `nucypher status events` can now use event filters and be output to a csv file for simpler accounting. (`#2573 <https://github.com/nucypher/nucypher/issues/2573>`__)
|
||||||
|
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
~~~~~~~~
|
||||||
|
|
||||||
|
- Properly handles public TLS certificate restoration; Simplify Ursula construction. (`#2536 <https://github.com/nucypher/nucypher/issues/2536>`__)
|
||||||
|
- Update the call to ``estimateGas()`` according to the new ``web3`` API (`#2543 <https://github.com/nucypher/nucypher/issues/2543>`__)
|
||||||
|
- Ensure remote ethereum provider connection is automatically established with characters. Fixes default keyring filepath generation. (`#2550 <https://github.com/nucypher/nucypher/issues/2550>`__)
|
||||||
|
- Cache Alice's transacting power for later activation. (`#2555 <https://github.com/nucypher/nucypher/issues/2555>`__)
|
||||||
|
- Prevent process hanging in the cases when the main thread finishes before the treasure map publisher (`#2557 <https://github.com/nucypher/nucypher/issues/2557>`__)
|
||||||
|
|
||||||
|
|
||||||
|
Improved Documentation
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
- Documentation overhaul with focus on staking node operation (`#2463 <https://github.com/nucypher/nucypher/issues/2463>`__)
|
||||||
|
- Expands Alice grant example using the python API. (`#2554 <https://github.com/nucypher/nucypher/issues/2554>`__)
|
||||||
|
|
||||||
|
|
||||||
|
Deprecations and Removals
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
- Deprecated StakingEscrow features to reduce code size: batch deposits, testContract flag, locking reStake.
|
||||||
|
Deployment of StakingEscrow is split in two steps: initial step with stub and final step after all contracts. (`#2518 <https://github.com/nucypher/nucypher/issues/2518>`__)
|
||||||
|
|
||||||
|
|
||||||
|
Misc
|
||||||
|
~~~~
|
||||||
|
|
||||||
|
- Refactor FleetSensor; add "/status/?omit_known_nodes=true" argument; prevent internal constants from leaking into the status page. (`#2352 <https://github.com/nucypher/nucypher/issues/2352>`__)
|
||||||
|
- WorkLock prometheus metrics are only collected on mainnet. (`#2546 <https://github.com/nucypher/nucypher/issues/2546>`__)
|
||||||
|
- Sister demo for Finnegan's wake for use on lynx/goerli testnet.
|
||||||
|
Alice and Bob API cleanup compelled by EthDenver 2021. (`#2560 <https://github.com/nucypher/nucypher/issues/2560>`__)
|
||||||
|
- Rework internal transaction signing API for improved thread saftey. (`#2572 <https://github.com/nucypher/nucypher/issues/2572>`__)
|
||||||
|
- new seed URL for mainnet seeds.nucypher.network
|
||||||
|
cloudworkers CLI updates (`#2576 <https://github.com/nucypher/nucypher/issues/2576>`__)
|
||||||
|
- Extends probationary period for policy creation in the network to 2021-04-30 23:59:59 UTC. (`#2585 <https://github.com/nucypher/nucypher/issues/2585>`__)
|
||||||
|
|
||||||
|
|
||||||
v4.6.0 (2021-01-26)
|
v4.6.0 (2021-01-26)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Refactor FleetSensor; add "/status/?omit_known_nodes=true" argument; prevent internal constants from leaking into the status page.
|
|
|
@ -1 +0,0 @@
|
||||||
Documentation overhaul with focus on staking node operation
|
|
|
@ -1,2 +0,0 @@
|
||||||
Deprecated StakingEscrow features to reduce code size: batch deposits, testContract flag, locking reStake.
|
|
||||||
Deployment of StakingEscrow is split in two steps: initial step with stub and final step after all contracts.
|
|
|
@ -1 +0,0 @@
|
||||||
Properly handles public TLS certificate restoration; Simplify Ursula construction.
|
|
|
@ -1 +0,0 @@
|
||||||
Update the call to ``estimateGas()`` according to the new ``web3`` API
|
|
|
@ -1 +0,0 @@
|
||||||
New preferable base pooling contract
|
|
|
@ -1 +0,0 @@
|
||||||
WorkLock prometheus metrics are only collected on mainnet.
|
|
|
@ -1 +0,0 @@
|
||||||
The output of `nucypher stake events` can be written to a csv file for simpler staker accounting.
|
|
|
@ -1 +0,0 @@
|
||||||
Ensure remote ethereum provider connection is automatically established with characters. Fixes default keyring filepath generation.
|
|
|
@ -1 +0,0 @@
|
||||||
Simplifies CLI usage with optional interactive collection of all CLI parameters used during grant, encrypt, and retrieve.
|
|
|
@ -1 +0,0 @@
|
||||||
Expands Alice grant example using the python API.
|
|
|
@ -1 +0,0 @@
|
||||||
Cache Alice's transacting power for later activation.
|
|
|
@ -1 +0,0 @@
|
||||||
Prevent process hanging in the cases when the main thread finishes before the treasure map publisher
|
|
|
@ -1,2 +0,0 @@
|
||||||
Sister demo for Finnegan's wake for use on lynx/goerli testnet.
|
|
||||||
Alice and Bob API cleanup compelled by EthDenver 2021.
|
|
|
@ -1 +0,0 @@
|
||||||
Improved status codes and error messages for various PRE http endpoints
|
|
|
@ -1 +0,0 @@
|
||||||
Rework internal transaction signing API for improved thread saftey.
|
|
|
@ -1 +0,0 @@
|
||||||
`nucypher status events` can now use event filters and be output to a csv file for simpler accounting.
|
|
|
@ -1,2 +0,0 @@
|
||||||
new seed URL for mainnet seeds.nucypher.network
|
|
||||||
cloudworkers CLI updates
|
|
|
@ -1 +0,0 @@
|
||||||
Extends probationary period for policy creation in the network to 2021-04-30 23:59:59 UTC.
|
|
|
@ -31,7 +31,7 @@ __url__ = "https://github.com/nucypher/nucypher"
|
||||||
|
|
||||||
__summary__ = 'A proxy re-encryption network to empower privacy in decentralized systems.'
|
__summary__ = 'A proxy re-encryption network to empower privacy in decentralized systems.'
|
||||||
|
|
||||||
__version__ = "4.6.0"
|
__version__ = "4.7.0"
|
||||||
|
|
||||||
__author__ = "NuCypher"
|
__author__ = "NuCypher"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue