We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7657ca commit b542855Copy full SHA for b542855
3 files changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "xcsv"
3
-version = "0.4.0"
+version = "0.5.0"
4
description = "Package for working with extended CSV (XCSV) files"
5
authors = ["Paul Breen <pbree@bas.ac.uk>"]
6
readme = "README.md"
tests/test_xcsv.py
@@ -9,7 +9,7 @@
9
base = os.path.dirname(__file__)
10
11
def test_version():
12
- assert xcsv.__version__ == '0.4.0'
+ assert xcsv.__version__ == '0.5.0'
13
14
@pytest.fixture
15
def dummy_metadata():
xcsv/__init__.py
@@ -5,7 +5,7 @@
# Date: 2022-04-14
###############################################################################
7
8
-__version__ = '0.4.0'
+__version__ = '0.5.0'
import re
import argparse
0 commit comments