Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,18 @@ ruff check # running linter

Contributions are welcome! Feel free to add features, fix bugs, or improve documentation via pull requests.

## Publishing to PyPi
## Publishing to PyPI

To deploy `pactus-sdk` and create a release, tag the new version and push it to GitHub.
Ensure the version matches the one specified in `setup.py`.

```bash
git tag -s -a v1.x.y -m "Version 1.x.y"
git push origin v1.x.y
```

After publishing, make sure to update the version number in `setup.py`.
After publishing, update the version number in `setup.py` accordingly.
For reference, see [this PR](https://github.com/pactus-project/python-sdk/pull/24).

## License

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
long_description = fh.read()

NAME = "pactus-sdk"
VERSION = "1.2.2"
VERSION = "1.2.3"
AUTHOR = "Pactus Development Team"
AUTHOR_EMAIL = "info@pactus.org"
DESCRIPTION = "Pactus Development Kit"
Expand Down