mirror of https://github.com/nucypher/nucypher.git
parent
7dbf4b8161
commit
6975c15b95
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 5.0.2
|
||||
current_version = 5.1.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 = '5.0.2'
|
||||
release = '5.1.0'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
|
@ -4,6 +4,24 @@ Releases
|
|||
|
||||
.. towncrier release notes start
|
||||
|
||||
v5.1.0 (2021-04-15)
|
||||
-------------------
|
||||
|
||||
Features
|
||||
~~~~~~~~
|
||||
|
||||
- Improve UX for character CLI when there are multiple configuration files:
|
||||
- If there are multiple possible character configuration files prompt the user to choose
|
||||
- If there is only one character configuration file, even if not the default filename, use lone configuration without prompting and print to CLI. (`#2617 <https://github.com/nucypher/nucypher/issues/2617>`__)
|
||||
|
||||
|
||||
Bugfixes
|
||||
~~~~~~~~
|
||||
|
||||
- Ensure that correct configuration filepath is displayed when initializing characters, and add hint about
|
||||
using ``--config-file <FILE>`` for subsequent CLI commands if non-default filepath used. (`#2617 <https://github.com/nucypher/nucypher/issues/2617>`__)
|
||||
|
||||
|
||||
v5.0.2 (2021-04-14)
|
||||
-------------------
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
Ensure that correct configuration filepath is displayed when initializing characters, and add hint about
|
||||
using ``--config-file <FILE>`` for subsequent CLI commands if non-default filepath used.
|
|
@ -1,3 +0,0 @@
|
|||
Improve UX for character CLI when there are multiple configuration files:
|
||||
- If there are multiple possible character configuration files prompt the user to choose
|
||||
- If there is only one character configuration file, even if not the default filename, use lone configuration without prompting and print to CLI.
|
|
@ -31,7 +31,7 @@ __url__ = "https://github.com/nucypher/nucypher"
|
|||
|
||||
__summary__ = 'A proxy re-encryption network to empower privacy in decentralized systems.'
|
||||
|
||||
__version__ = "5.0.2"
|
||||
__version__ = "5.1.0"
|
||||
|
||||
__author__ = "NuCypher"
|
||||
|
||||
|
|
Loading…
Reference in New Issue