Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a19c1c8

Browse files
committedAug 26, 2022
Release pyppms-2.0.0
1 parent e2a0885 commit a19c1c8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
description = "A Python package to communicate with Stratocore's PUMAPI."
33
name = "pyppms"
4-
version = "2.0.0-dev0"
4+
version = "2.0.0"
55

66
license = "GPLv3"
77

‎src/pyppms/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
.. include:: ../../TESTING.md
66
"""
77

8-
__version__ = "2.0.0-dev0"
8+
__version__ = "2.0.0"
99

1010
from .ppms import PpmsConnection

‎tests/test_init.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
def test_version():
77
"""Ensure we're running against the expected package version."""
8-
assert __version__ == "2.0.0-dev0"
8+
assert __version__ == "2.0.0"

0 commit comments

Comments
 (0)
Please sign in to comment.