Skip to content

Commit

Permalink
Bump to 21.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 25, 2021
1 parent fa755c6 commit 7f37781
Show file tree
Hide file tree
Showing 12 changed files with 29 additions and 16 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.D/2371.feature

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

5 changes: 0 additions & 5 deletions CHANGELOG.D/2391.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGELOG.D/2394.bugfix

This file was deleted.

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

[comment]: # (towncrier release notes start)

Neuro SDK/CLI 21.10.0 (2021-10-25)
==================================

Features
--------

- Added support of open stack as bucket provider. ([#2371](https://github.com/neuro-inc/platform-client-python/issues/2371))
- Added `blob du <bucket_id_or_name>` command to change bucket's storage usage. ([#2372](https://github.com/neuro-inc/platform-client-python/issues/2372))
- Added support of bucket name in uris for bucket that do not belong to current user. ([#2385](https://github.com/neuro-inc/platform-client-python/issues/2385))
- Added first name, lastname, registered columns to `neuro admin get-cluster-users` output. ([#2387](https://github.com/neuro-inc/platform-client-python/issues/2387))
- Added "Spent credits" to add "neuro admin get-cluster-users". Splitted 'quota' into 'balance' and 'quota':

- `neuro admin set-user-quota` changes only `max_running_jobs` quota.
- `neuro admin set-user-credits` changes only `credits` balance of user.
- `neuro admin add-user-credits` updates `credits` balance of user by delta. ([#2391](https://github.com/neuro-inc/platform-client-python/issues/2391))


Bugfixes
--------

- Fix fetching zero-size blob from S3 compatible bucket providers. ([#2394](https://github.com/neuro-inc/platform-client-python/issues/2394))


Neuro SDK/CLI 21.9.3 (2021-09-24)
===================================

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.9.3
21.10.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.9.3
version = 21.10.0
description = Neuro Platform client
url = https://github.com/neuro-inc/platform-client-python
long_description = file: README.md
Expand Down Expand Up @@ -42,7 +42,7 @@ install_requires =
python-jose>=3.0.0
python-dateutil>=2.7.0
aiodocker>=0.18.7
neuro-sdk>=21.9.3
neuro-sdk>=21.10.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.9.3"
__version__ = "21.10.0"
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 @@ -85,7 +85,7 @@
from .users import Action, Permission, Share, Users
from .utils import _ContextManager, find_project_root

__version__ = "21.9.3"
__version__ = "21.10.0"


__all__ = (
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = neuro-sdk
version = 21.9.3
version = 21.10.0
description = Neu.ro SDK
url = https://github.com/neuro-inc/platform-client-python
long_description = file: README.md
Expand Down

0 comments on commit 7f37781

Please sign in to comment.