diff --git a/CHANGELOG.D/2404.feature b/CHANGELOG.D/2404.feature deleted file mode 100644 index 0e762722b..000000000 --- a/CHANGELOG.D/2404.feature +++ /dev/null @@ -1 +0,0 @@ -Report job price in `neuro job status`, add support of organisation names in jobs. diff --git a/CHANGELOG.D/2407.feature b/CHANGELOG.D/2407.feature deleted file mode 100644 index f3ff6668e..000000000 --- a/CHANGELOG.D/2407.feature +++ /dev/null @@ -1 +0,0 @@ -Raise dedicated `NotSupportedError` for unsupported REST API calls diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b1a22c69..459a0f8ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ [comment]: # (towncrier release notes start) +Neuro SDK/CLI 21.11.0 (2021-11-08) +================================== + +Features +-------- + +- Report job price in `neuro job status`, add support of organisation names in jobs. ([#2404](https://github.com/neuro-inc/platform-client-python/issues/2404)) +- Raise dedicated `NotSupportedError` for unsupported REST API calls ([#2407](https://github.com/neuro-inc/platform-client-python/issues/2407)) + + Neuro SDK/CLI 21.10.0 (2021-10-25) ================================== diff --git a/VERSION.txt b/VERSION.txt index 7c15681f6..479f64c49 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.10.0 +21.11.0 diff --git a/neuro-cli/setup.cfg b/neuro-cli/setup.cfg index 13f91e821..21e99e175 100644 --- a/neuro-cli/setup.cfg +++ b/neuro-cli/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = neuro-cli -version = 21.10.0 +version = 21.11.0 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.10.0 + neuro-sdk>=21.11.0 click>=8.0 humanize>=3.3 typing_extensions>=3.7.4 diff --git a/neuro-cli/src/neuro_cli/__init__.py b/neuro-cli/src/neuro_cli/__init__.py index 52d1f32ba..3c6df3909 100644 --- a/neuro-cli/src/neuro_cli/__init__.py +++ b/neuro-cli/src/neuro_cli/__init__.py @@ -1 +1 @@ -__version__ = "21.10.0" +__version__ = "21.11.0" diff --git a/neuro-sdk/src/neuro_sdk/__init__.py b/neuro-sdk/src/neuro_sdk/__init__.py index b45dcd962..097700760 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.10.0" +__version__ = "21.11.0" __all__ = ( diff --git a/setup.cfg b/setup.cfg index 67b90f53c..6ec355a88 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = neuro-sdk -version = 21.10.0 +version = 21.11.0 description = Neu.ro SDK url = https://github.com/neuro-inc/platform-client-python long_description = file: README.md