Skip to content

Commit

Permalink
Bump version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreF committed Feb 10, 2024
1 parent 70cc273 commit ebffdc2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ Making a release
The process to make a release is the following:
* Update the Changelog with the release version and date. Ensure it's up-to-date with latest fixes & PRs merged.
* Make sure test pass, check that Github actions are green.
* Bump the version number in ``paho/mqtt/__init__.py``, commit the change.
* Make a dry-run of build:
* Build using hatch: ``python -m hatch build``
* Check with twine for common errors: ``python -m twine check dist/*``
* Try uploading it to testpypi: ``python3 -m twine upload --repository testpypi dist/*``
* Bump the version number in ``paho/mqtt/__init__.py``, commit the change.
* Do a GPG signed tag (assuming your GPG is correctly configured, it's ``git tag -s -m "Version 1.2.3" v1.2.3``)
* Push the commit and it's tag to Github
* Make sure your git is clean, especially the ``dist/`` folder.
Expand Down
4 changes: 2 additions & 2 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v2.0.0rc2 - 2024-01-21
======================
v2.0.0 - 2024-02-10
===================

This release include breaking change. See `migrations <https://eclipse.dev/paho/files/paho.mqtt.python/html/migrations.html>`_ for more details on how to upgrade.

Expand Down
2 changes: 1 addition & 1 deletion src/paho/mqtt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.0.0rc3.dev0"
__version__ = "2.0.0"


class MQTTException(Exception):
Expand Down

0 comments on commit ebffdc2

Please sign in to comment.