File tree 4 files changed +32
-2
lines changed
4 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 1
1
= CLI Changelog
2
2
3
+ == 1.9.0
4
+
5
+ Enhancements:
6
+
7
+ * GCP connection/paused status via the endpoint resource
8
+ (https://github.com/globus/globus-cli/pull/440[440])
9
+ * Update WebApp links
10
+ (https://github.com/globus/globus-cli/pull/438[438])
11
+ * Minor internal improvements
12
+
3
13
== 1.8.0
4
14
5
15
Enhancements:
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # handy script for autogenerating release notes from GitHub merged PRs
4
+ # not perfect, but easy to update if we want to change it up in the future
5
+
6
+ last_tag=$( git tag --list | egrep ' ^[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+$' | sort -V | tail -n 1)
7
+
8
+ github-issue-title () {
9
+ local reponame=" globus/globus-cli"
10
+ local num=" $1 "
11
+ api_out=" $( curl --silent \
12
+ " https://api.github.com/repos/$reponame /issues/$num " ) "
13
+ echo " $api_out " | grep ' "title"' | cut -d' :' -f2- | sed -e ' s/^ "//' -e ' s/",$//'
14
+ }
15
+
16
+ git log " ${last_tag} ..master" --oneline | grep ' Merge pull' | egrep -o ' #[[:digit:]]+' | tr -d ' #' | \
17
+ while read line; do
18
+ echo " * $( github-issue-title " $line " ) "
19
+ echo " (https://github.com/globus/globus-cli/pull/${line} [${line} ])"
20
+ done
Original file line number Diff line number Diff line change 2
2
3
3
# single source of truth for package version,
4
4
# see https://packaging.python.org/en/latest/single_source_version/
5
- __version__ = "1.8 .0"
5
+ __version__ = "1.9 .0"
6
6
7
7
# app name to send as part of SDK requests
8
8
app_name = "Globus CLI v{}" .format (__version__ )
Original file line number Diff line number Diff line change 21
21
version = version ,
22
22
packages = find_packages (exclude = ['tests' , 'tests.*' ]),
23
23
install_requires = [
24
- 'globus-sdk==1.5.0 ' ,
24
+ 'globus-sdk==1.6.1 ' ,
25
25
'click>=6.6,<7.0' ,
26
26
'jmespath==0.9.2' ,
27
27
'configobj>=5.0.6,<6.0.0' ,
You can’t perform that action at this time.
0 commit comments