From ac659529c15f0fe6e4b24132f6e322e7d9eefc42 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Tue, 23 Nov 2021 09:59:26 +0200 Subject: [PATCH] Bump to 21.11.2 --- CHANGELOG.D/2405.feature | 1 - CHANGELOG.D/2417.feature | 1 - CHANGELOG.D/2418.removal | 1 - CHANGELOG.md | 16 ++++++++++++++++ VERSION.txt | 2 +- neuro-cli/setup.cfg | 4 ++-- neuro-cli/src/neuro_cli/__init__.py | 2 +- neuro-sdk/src/neuro_sdk/__init__.py | 2 +- setup.cfg | 2 +- 9 files changed, 22 insertions(+), 9 deletions(-) delete mode 100644 CHANGELOG.D/2405.feature delete mode 100644 CHANGELOG.D/2417.feature delete mode 100644 CHANGELOG.D/2418.removal diff --git a/CHANGELOG.D/2405.feature b/CHANGELOG.D/2405.feature deleted file mode 100644 index 4beb7e9b8..000000000 --- a/CHANGELOG.D/2405.feature +++ /dev/null @@ -1 +0,0 @@ -Configure version checker settings by plugins. diff --git a/CHANGELOG.D/2417.feature b/CHANGELOG.D/2417.feature deleted file mode 100644 index 4879e6fab..000000000 --- a/CHANGELOG.D/2417.feature +++ /dev/null @@ -1 +0,0 @@ -CLI startup time is 2 times shorter now. diff --git a/CHANGELOG.D/2418.removal b/CHANGELOG.D/2418.removal deleted file mode 100644 index 50210dc30..000000000 --- a/CHANGELOG.D/2418.removal +++ /dev/null @@ -1 +0,0 @@ -Deprecate `neuro project init` command, use `cookiecutter gh:neuro-inc/cookiecutter-neuro-project` instead. diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d0713cc1..f76a8e598 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ [comment]: # (towncrier release notes start) +Neuro SDK/CLI 21.11.2 (2021-11-23) +================================== + +Features +-------- + +- Configure version checker settings by plugins. ([#2405](https://github.com/neuro-inc/platform-client-python/issues/2405)) +- CLI startup time is 2 times shorter now. ([#2417](https://github.com/neuro-inc/platform-client-python/issues/2417)) + + +Deprecations and Removals +------------------------- + +- Deprecate `neuro project init` command, use `cookiecutter gh:neuro-inc/cookiecutter-neuro-project` instead. ([#2418](https://github.com/neuro-inc/platform-client-python/issues/2418)) + + Neuro SDK/CLI 21.11.1 (2021-11-17) ================================== diff --git a/VERSION.txt b/VERSION.txt index 8cbcebad5..833e4c226 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1,4 +1,4 @@ # Global version number, # Update the file and run 'make fmt' to apply it everywhere -21.11.1 +21.11.2 diff --git a/neuro-cli/setup.cfg b/neuro-cli/setup.cfg index b4960bb16..c2a2fbdaf 100644 --- a/neuro-cli/setup.cfg +++ b/neuro-cli/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = neuro-cli -version = 21.11.1 +version = 21.11.2 description = Neuro Platform client url = https://github.com/neuro-inc/platform-client-python long_description = file: README.md @@ -42,7 +42,7 @@ install_requires = python-jose>=3.0.0 python-dateutil>=2.7.0 aiodocker>=0.18.7 - neuro-sdk>=21.11.1 + neuro-sdk>=21.11.2 click>=8.0 packaging>=20.4 humanize>=3.3 diff --git a/neuro-cli/src/neuro_cli/__init__.py b/neuro-cli/src/neuro_cli/__init__.py index 54fad7e8d..2644d5272 100644 --- a/neuro-cli/src/neuro_cli/__init__.py +++ b/neuro-cli/src/neuro_cli/__init__.py @@ -1 +1 @@ -__version__ = "21.11.1" +__version__ = "21.11.2" diff --git a/neuro-sdk/src/neuro_sdk/__init__.py b/neuro-sdk/src/neuro_sdk/__init__.py index 45b6a1bc1..bcd4b9dbc 100644 --- a/neuro-sdk/src/neuro_sdk/__init__.py +++ b/neuro-sdk/src/neuro_sdk/__init__.py @@ -86,7 +86,7 @@ from .users import Action, Permission, Share, Users from .utils import _ContextManager, find_project_root -__version__ = "21.11.1" +__version__ = "21.11.2" __all__ = ( diff --git a/setup.cfg b/setup.cfg index 2022877f8..adf52aad2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = neuro-sdk -version = 21.11.1 +version = 21.11.2 description = Neu.ro SDK url = https://github.com/neuro-inc/platform-client-python long_description = file: README.md