From 6975c15b95a71f5d5f6d81746f4fbf7650bd3f59 Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Thu, 15 Apr 2021 11:03:33 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=205.0.2=20=E2=86=92=205.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/source/conf.py | 2 +- docs/source/release_notes/releases.rst | 18 ++++++++++++++++++ newsfragments/2617.bugfix.rst | 2 -- newsfragments/2617.feature.rst | 3 --- nucypher/__about__.py | 2 +- 6 files changed, 21 insertions(+), 8 deletions(-) delete mode 100644 newsfragments/2617.bugfix.rst delete mode 100644 newsfragments/2617.feature.rst diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d67fdc649..4d424e51c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 5.0.2 +current_version = 5.1.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[^.]*)\.(?P\d+))? diff --git a/docs/source/conf.py b/docs/source/conf.py index fee2fcfc7..48d8dd93e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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 --------------------------------------------------- diff --git a/docs/source/release_notes/releases.rst b/docs/source/release_notes/releases.rst index fe7577ba6..9da119c75 100644 --- a/docs/source/release_notes/releases.rst +++ b/docs/source/release_notes/releases.rst @@ -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 `__) + + +Bugfixes +~~~~~~~~ + +- Ensure that correct configuration filepath is displayed when initializing characters, and add hint about + using ``--config-file `` for subsequent CLI commands if non-default filepath used. (`#2617 `__) + + v5.0.2 (2021-04-14) ------------------- diff --git a/newsfragments/2617.bugfix.rst b/newsfragments/2617.bugfix.rst deleted file mode 100644 index 8497dd221..000000000 --- a/newsfragments/2617.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Ensure that correct configuration filepath is displayed when initializing characters, and add hint about -using ``--config-file `` for subsequent CLI commands if non-default filepath used. diff --git a/newsfragments/2617.feature.rst b/newsfragments/2617.feature.rst deleted file mode 100644 index fb43dc77b..000000000 --- a/newsfragments/2617.feature.rst +++ /dev/null @@ -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. diff --git a/nucypher/__about__.py b/nucypher/__about__.py index 5c09080e9..334d29693 100644 --- a/nucypher/__about__.py +++ b/nucypher/__about__.py @@ -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"