Skip to content

Commit 64e330f

Browse files
committed
Merge branch 'develop' of github.com:gridscale/gridscale_api_client_python into develop
2 parents 45d7ef7 + 5c3c74a commit 64e330f

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.travis/check_release_step.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -ev
33
echo "Checking release version $(python setup.py --version)"
44

5-
# if git tag | grep -qE "^v$(python setup.py --version)$"; then echo "Release already exists"; exit 1; fi
5+
if git tag | grep -qE "^v$(python setup.py --version)$"; then echo "Release already exists"; exit 1; fi
66
if ! grep -q "v$(python setup.py --version)" CHANGELOG.md; then echo "Version missing in CHANGELOG.md"; exit 1; fi
77

88
echo "Checking Done"

.travis/upload_to_apipy_org.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
set -ev
33

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

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

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@
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

0 commit comments

Comments
 (0)