Skip to content

Commit 10b0d54

Browse files
authored
Merge pull request #904 from globus/release-3.20.0
Release v3.20.0
2 parents a89dfe0 + e078a26 commit 10b0d54

8 files changed

+29
-23
lines changed

changelog.adoc

+24
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,30 @@
22

33
// scriv-insert-here
44

5+
== 3.20.0 (2023-12-06)
6+
7+
Bugfixes:
8+
9+
* Accommodate copied-and-pasted API routes to the `globus api groups` command
10+
that include the `/v2` route.
11+
12+
Enhancements:
13+
14+
* Added a new command for non-admins to create GCSv5 Guest Collections.
15+
+
16+
[source]
17+
----
18+
globus collection create guest <mapped_collection_id> <root_path> <display_name>
19+
----
20+
21+
* Introduce a new command, `globus gcs`, for GCSv5 Collection, Storage Gateway, and
22+
User Credential management.
23+
24+
Other:
25+
26+
* The `globus timer create transfer` command now supports the latest
27+
version of the Globus Timers API.
28+
529
== 3.19.0 (2023-11-10)
630

731
Bugfixes:

changelog.d/20231106_082938_ada_use_timersv2.md

-4
This file was deleted.

changelog.d/20231127_161505_derek_guest_collection_creation_sc_14410.md

-8
This file was deleted.

changelog.d/20231128_151455_kurtmckee_fix_groups_api.md

-4
This file was deleted.

changelog.d/20231204_165730_sirosen_introduce_gcs_command.md

-4
This file was deleted.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def read_readme():
4646
package_dir={"": "src"},
4747
python_requires=">=3.7",
4848
install_requires=[
49-
"globus-sdk==3.32.0",
49+
"globus-sdk==3.33.0",
5050
"click>=8.1.4,<9",
5151
"jmespath==1.0.1",
5252
"packaging>=17.0",

src/globus_cli/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# single source of truth for package version,
99
# see https://packaging.python.org/en/latest/single_source_version/
10-
__version__ = "3.19.0"
10+
__version__ = "3.20.0"
1111

1212
# app name to send as part of SDK requests
1313
app_name = f"Globus CLI v{__version__}"

tox.ini

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ depends =
3939
cov-report: cov-combine
4040

4141
[testenv:clean]
42-
deps = coverage
42+
deps =
43+
coverage
44+
setuptools
4345
skip_install = true
4446
commands =
4547
python setup.py clean --all

0 commit comments

Comments
 (0)