Skip to content

Commit

Permalink
Bump version: 0.1.8 → 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
bumpversion[bot] committed Sep 20, 2023
1 parent 9fd82fd commit 180ffbf
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"project_slug": "xhydro",
"project_short_description": "Hydrological analysis library built with xarray",
"pypi_username": "TC-FF",
"version": "0.1.8",
"version": "0.1.9",
"use_pytest": "y",
"use_black": "y",
"add_pyup_badge": "n",
Expand Down
16 changes: 8 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.8
current_version = 0.1.9
commit = True
tag = True

Expand All @@ -24,22 +24,22 @@ test = pytest

[tool:pytest]
collect_ignore = ['setup.py']
addopts =
--color=yes
addopts =
--color=yes
--verbose
filterwarnings =
filterwarnings =
ignore::UserWarning

[flake8]
exclude =
exclude =
.git,
docs,
build,
.eggs,
docs/conf.py,
max-line-length = 88
max-complexity = 12
ignore =
ignore =
C901
E203
E231
Expand All @@ -49,9 +49,9 @@ ignore =
F403
W503
W504
per-file-ignores =
per-file-ignores =
tests/*:E402
rst-roles =
rst-roles =
mod,
py:attr,
py:attribute,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
"dev": dev_requirements,
},
url="https://github.com/hydrologie/xhydro",
version="0.1.8",
version="0.1.9",
zip_safe=False,
)
2 changes: 1 addition & 1 deletion tests/test_xhydro.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ def test_package_metadata():
contents = f.read()
assert """Thomas-Charles Fortier Filion""" in contents
assert '__email__ = "tcff_hydro@outlook.com"' in contents
assert '__version__ = "0.1.8"' in contents
assert '__version__ = "0.1.9"' in contents
2 changes: 1 addition & 1 deletion xhydro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

__author__ = """Thomas-Charles Fortier Filion"""
__email__ = "tcff_hydro@outlook.com"
__version__ = "0.1.8"
__version__ = "0.1.9"

0 comments on commit 180ffbf

Please sign in to comment.