Skip to content

Commit e218f20

Browse files
committed
Merge branch 'release/v1.1.1'
2 parents 016cee8 + 6874049 commit e218f20

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.travis/upload_to_apipy_org.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
set -ev
33

44
echo "Uploading package to pypi.org"
5+
ls -l
56

6-
# pip install twine
7-
# twine upload -u __token__ -p "$PYPI_ORG_TOKEN" dist/gs_api_client-*
7+
python setup.py sdist bdist_wheel
8+
pip install twine
9+
twine upload -u __token__ -p "$PYPI_ORG_TOKEN" dist/gs_api_client-*
810

911
echo "Upload Done"

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
- Add renew_paas_service_credentials() endpoint
1717
- Remove deprecated create_label() and delete_label() endpoints
1818

19-
## [v1.0.4]
19+
## [v1.1.0]
2020

2121
- Add get_storage_backups()
2222
- Add delete_storage_backup()
@@ -32,3 +32,9 @@
3232
- Replace update_marketplace_template() with update_marketplace_application()
3333
- Replace delete_marketplace_template() with delete_marketplace_application()
3434
- Replace get_marketplace_template_events() with get_marketplace_application_events()
35+
- Update credential attributes in paas_service_add() endpoint
36+
37+
## [v1.1.1]
38+
39+
- Add missing information in changelog
40+
- Fix readme

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Inside the [examples.py](examples/examples.py) file, you can see some example re
195195
- get_template_events
196196
- get_deleted_templates
197197

198-
### Marketplace templates
198+
### Marketplace applications
199199

200200
- get_marketplace_applications
201201
- get_marketplace_application

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='gs_api_client',
16-
version='1.1.0',
16+
version='1.1.1',
1717
description='Official Python idiomatic client for gridscale services',
1818
long_description=long_description,
1919
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)