Skip to content

Commit b542855

Browse files
committed
Bump version
1 parent f7657ca commit b542855

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "xcsv"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "Package for working with extended CSV (XCSV) files"
55
authors = ["Paul Breen <pbree@bas.ac.uk>"]
66
readme = "README.md"

tests/test_xcsv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
base = os.path.dirname(__file__)
1010

1111
def test_version():
12-
assert xcsv.__version__ == '0.4.0'
12+
assert xcsv.__version__ == '0.5.0'
1313

1414
@pytest.fixture
1515
def dummy_metadata():

xcsv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Date: 2022-04-14
66
###############################################################################
77

8-
__version__ = '0.4.0'
8+
__version__ = '0.5.0'
99

1010
import re
1111
import argparse

0 commit comments

Comments
 (0)