We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ac5ae5 commit 724d7beCopy full SHA for 724d7be
pyproject.toml
@@ -1,7 +1,7 @@
1
[tool.poetry]
2
description = "A Python package to communicate with Stratocore's PUMAPI."
3
name = "pyppms"
4
-version = "2.1.0-dev0"
+version = "2.1.0"
5
6
license = "GPLv3"
7
src/pyppms/__init__.py
@@ -7,6 +7,6 @@
.. include:: ../../CHANGELOG.md
8
"""
9
10
-__version__ = "2.1.0-dev0"
+__version__ = "2.1.0"
11
12
from .ppms import PpmsConnection
tests/test_init.py
@@ -5,4 +5,4 @@
def test_version():
"""Ensure we're running against the expected package version."""
- assert __version__ == "2.1.0-dev0"
+ assert __version__ == "2.1.0"
0 commit comments