Skip to content

Commit

Permalink
Bump the version
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-breen committed May 1, 2023
1 parent 5198dab commit 653643f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "xcsv"
version = "0.3.0"
version = "0.4.0"
description = "Package for working with extended CSV (XCSV) files"
authors = ["Paul Breen <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_xcsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
base = os.path.dirname(__file__)

def test_version():
assert xcsv.__version__ == '0.3.0'
assert xcsv.__version__ == '0.4.0'

@pytest.fixture
def dummy_metadata():
Expand Down
2 changes: 1 addition & 1 deletion xcsv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Date: 2022-04-14
###############################################################################

__version__ = '0.3.0'
__version__ = '0.4.0'

import re
import argparse
Expand Down

0 comments on commit 653643f

Please sign in to comment.