Skip to content

Commit 8b20a84

Browse files
committed
bump version + instructions
1 parent 9d306b4 commit 8b20a84

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -171,3 +171,17 @@ In this case memoization topic is one of the targets for improvement, so I can g
171171
You can find other examples of usage in `example.py`
172172

173173
Autogenerated by swagger documentation can be found [here](/README.generated.md).
174+
175+
## Development
176+
177+
Test new created package before publishing
178+
```sh
179+
pip install -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ python-leetcode==1.2.4
180+
```
181+
182+
Publish package
183+
```sh
184+
git tag 1.2.4
185+
git push --tags
186+
187+
```

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from setuptools import find_packages, setup # noqa: H301
1515

1616
NAME = "python-leetcode"
17-
VERSION = "1.2.4"
17+
VERSION = "1.2.5"
1818

1919
with open("README.md") as readme:
2020
DESCRIPTION: str = readme.read()

0 commit comments

Comments
 (0)