Skip to content

Commit 341b394

Browse files
author
Dave Shifflett
authored
Merge pull request #441 from globus/release-1.9.0
Release 1.9.0
2 parents cc8246f + 13454e4 commit 341b394

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

changelog.adoc

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
= CLI Changelog
22

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+
313
== 1.8.0
414

515
Enhancements:

generate_release_notes.sh

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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

globus_cli/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# single source of truth for package version,
44
# see https://packaging.python.org/en/latest/single_source_version/
5-
__version__ = "1.8.0"
5+
__version__ = "1.9.0"
66

77
# app name to send as part of SDK requests
88
app_name = "Globus CLI v{}".format(__version__)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
version=version,
2222
packages=find_packages(exclude=['tests', 'tests.*']),
2323
install_requires=[
24-
'globus-sdk==1.5.0',
24+
'globus-sdk==1.6.1',
2525
'click>=6.6,<7.0',
2626
'jmespath==0.9.2',
2727
'configobj>=5.0.6,<6.0.0',

0 commit comments

Comments
 (0)