Skip to content

Commit

Permalink
Bump version: 0.2.0 → 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dalonsoa committed Feb 10, 2023
1 parent cee9f34 commit fdda575
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion csvy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Python reader/writer for CSV files with YAML header information.
"""
__version__ = "0.2.0"
__version__ = "0.2.1"
from .readers import ( # noqa: F401
read_header,
read_metadata,
Expand Down
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 = "pycsvy"
version = "0.2.0"
version = "0.2.1"
description = "Python reader/writer for CSV files with YAML header information."
authors = ["Diego Alonso Álvarez <[email protected]>"]
license = "BSD-3-Clause"
Expand Down
20 changes: 10 additions & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
[bumpversion]
current_version = 0.2.1
commit = True
tag = True

[aliases]
test = pytest

[tool:pytest]
addopts =
addopts =
-v --flake8 --mypy -p no:warnings
--cov=csvy --cov-report=html:reports/coverage/html
--cov=csvy --cov-report=html:reports/coverage/html
--cov-report=xml:reports/coverage/coverage.xml
--doctest-modules --ignore=docs/

Expand All @@ -15,7 +20,7 @@ max-line-length = 88
max-line-length = 88
exclude = venv/,.eggs/
per-file-ignores = __init__.py:F401
extend-ignore =
extend-ignore =
E203,

[mypy]
Expand All @@ -26,18 +31,13 @@ strict_optional = False
ignore_errors = True

[isort]
known_third_party =
known_third_party =
line_length = 88
multi_line_output = 3
include_trailing_comma = true

[bumpversion]
current_version = 0.2.0
commit = True
tag = True

[bumpversion:file:setup.cfg]

[bumpversion:file:pyproject.toml]

[bumpversion:file:csvy/__init__.py]
[bumpversion:file:csvy/__init__.py]

0 comments on commit fdda575

Please sign in to comment.