From b5428550941786a7d7ea3f5d6a8a3823045d806a Mon Sep 17 00:00:00 2001 From: Paul Breen Date: Sat, 8 Jun 2024 13:22:31 +0100 Subject: [PATCH] Bump version --- pyproject.toml | 2 +- tests/test_xcsv.py | 2 +- xcsv/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 229b844..91bbb96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xcsv" -version = "0.4.0" +version = "0.5.0" description = "Package for working with extended CSV (XCSV) files" authors = ["Paul Breen "] readme = "README.md" diff --git a/tests/test_xcsv.py b/tests/test_xcsv.py index 7270bd8..604872f 100644 --- a/tests/test_xcsv.py +++ b/tests/test_xcsv.py @@ -9,7 +9,7 @@ base = os.path.dirname(__file__) def test_version(): - assert xcsv.__version__ == '0.4.0' + assert xcsv.__version__ == '0.5.0' @pytest.fixture def dummy_metadata(): diff --git a/xcsv/__init__.py b/xcsv/__init__.py index 4d19b7c..c1d4309 100644 --- a/xcsv/__init__.py +++ b/xcsv/__init__.py @@ -5,7 +5,7 @@ # Date: 2022-04-14 ############################################################################### -__version__ = '0.4.0' +__version__ = '0.5.0' import re import argparse