From 453c46ad2698eef5d9cf29dc74b22240d20832f7 Mon Sep 17 00:00:00 2001 From: Paul Breen Date: Mon, 24 Feb 2025 11:51:53 +0000 Subject: [PATCH] Bump version --- apres/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_apres.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apres/__init__.py b/apres/__init__.py index a4cbfac..688cfcf 100644 --- a/apres/__init__.py +++ b/apres/__init__.py @@ -5,7 +5,7 @@ # Date: 2018-09-24 ############################################################################### -__version__ = '0.2.0' +__version__ = '0.3.0' import re import os diff --git a/pyproject.toml b/pyproject.toml index 5668cf2..dd7164b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bas-apres" -version = "0.2.0" +version = "0.3.0" description = "Package for working with BAS ApRES files" authors = ["Paul Breen ", "Jonathan Kingslake "] license = "Apache-2.0" diff --git a/tests/test_apres.py b/tests/test_apres.py index 5d21423..b14db4c 100644 --- a/tests/test_apres.py +++ b/tests/test_apres.py @@ -12,7 +12,7 @@ from apres import __version__, ApRESBurst, ApRESFile def test_version(): - assert __version__ == '0.2.0' + assert __version__ == '0.3.0' class TestApRESBurst(unittest.TestCase):