Skip to content

Commit ac0c687

Browse files
author
keijack
committed
upgrade to 0.12.0
1 parent 5222e9f commit ac0c687

4 files changed

Lines changed: 13 additions & 4 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ venv.bak/
105105

106106
/my_test
107107
my_test_*
108-
upload.sh
109108

110109
# vscode
111110
.vscode/

py_eureka_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
SOFTWARE.
2323
"""
2424

25-
version = "0.11.13"
25+
version = "0.12.0"
2626

2727
"""
2828
Status of instances

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ authors = [
1414
]
1515
requires-python = ">=3.7"
1616
keywords = ["eureka", "netflix", "microservice"]
17-
license = {file = "LICENSE"}
17+
license = "MIT"
1818
classifiers = [
1919
"Programming Language :: Python :: 3",
20-
"License :: OSI Approved :: MIT License",
2120
"Operating System :: OS Independent",
2221
]
2322
dynamic = ["version"]

upload.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
rm dist/*
4+
5+
python3 -m pip install --upgrade build twine pkginfo
6+
7+
python3 -m build --sdist --wheel .
8+
9+
python3 -m twine check dist/*
10+
11+
python3 -m twine upload dist/*

0 commit comments

Comments
 (0)