Skip to content

Commit

Permalink
Bump to 21.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jan 10, 2022
1 parent 0d53b04 commit 46f6e79
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 13 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.D/2494.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGELOG.D/2495.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGELOG.D/2501.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGELOG.D/2502.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGELOG.D/2503.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGELOG.D/2505.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGELOG.D/2506.feature

This file was deleted.

20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@

[comment]: # (towncrier release notes start)

Neuro SDK/CLI 22.1.0 (2022-01-10)
=================================

Features
--------

- Added support `--owner` argument in blob bucket level commands to allow referring to another users bucket by name. ([#2494](https://github.com/neuro-inc/platform-client-python/issues/2494))
- Add --force/-f flag to neuro blob rmbucket to force remove non-empty bucket. ([#2495](https://github.com/neuro-inc/platform-client-python/issues/2495))
- Support `neuro -q ls` and `neuro -q blob ls` for quiet output enforcing. ([#2506](https://github.com/neuro-inc/platform-client-python/issues/2506))


Deprecations and Removals
-------------------------

- Replace `--http` option with `--http-port`, keep `--http` option as a hidden deprecated alternative, scheduled for removal later. ([#2501](https://github.com/neuro-inc/platform-client-python/issues/2501))
- Remove deprecated `neuro project init` command. ([#2502](https://github.com/neuro-inc/platform-client-python/issues/2502))
- Remove `client.job.tags()` method from SDK and `neuro job tags` command from CLI. ([#2503](https://github.com/neuro-inc/platform-client-python/issues/2503))
- Drop deprecated API from SDK ([#2505](https://github.com/neuro-inc/platform-client-python/issues/2505))


Neuro SDK/CLI 21.12.2 (2021-12-23)
==================================

Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Global version number,
# Update the file and run 'make fmt' to apply it everywhere

21.12.2
22.1.0
4 changes: 2 additions & 2 deletions neuro-cli/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = neuro-cli
version = 21.12.2
version = 22.1.0
description = Neuro Platform client
url = https://github.com/neuro-inc/platform-client-python
long_description = file: README.md
Expand Down Expand Up @@ -35,7 +35,7 @@ include_package_data = True
install_requires =
python-jose>=3.0.0
python-dateutil>=2.7.0
neuro-sdk>=21.12.2
neuro-sdk>=22.1.0
click>=8.0
humanize>=3.3
typing_extensions>=3.7.4
Expand Down
2 changes: 1 addition & 1 deletion neuro-cli/src/neuro_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "21.12.2"
__version__ = "22.1.0"
2 changes: 1 addition & 1 deletion neuro-sdk/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = neuro-sdk
version = 21.12.2
version = 22.1.0
description = Neu.ro SDK
url = https://github.com/neuro-inc/platform-client-python
long_description = file: README.md
Expand Down
2 changes: 1 addition & 1 deletion neuro-sdk/src/neuro_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
from ._users import Action, Permission, Quota, Share, Users
from ._utils import _ContextManager, find_project_root

__version__ = "21.12.2"
__version__ = "22.1.0"


__all__ = (
Expand Down

0 comments on commit 46f6e79

Please sign in to comment.