Skip to content

Commit

Permalink
Bump version: 0.3.1 → 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bumpversion[bot] committed Jan 10, 2024
1 parent 73e6824 commit a15b0fa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 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": "xdatasets",
"project_short_description": "Easy access to Earth observation datasets with xarray.",
"pypi_username": "sebastienlanglois",
"version": "0.3.1",
"version": "0.3.2",
"use_pytest": "y",
"use_black": "y",
"use_conda": "y",
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ target-version = [
]

[tool.bumpversion]
current_version = "0.3.1"
current_version = "0.3.2"
commit = true
tag = false
tag_name = "v{new_version}"
Expand All @@ -159,6 +159,7 @@ filename = ".cruft.json"
search = "\"version\": \"{current_version}\""
replace = "\"version\": \"{new_version}\""


[tool.coverage.run]
relative_files = true
include = ["xdatasets/*"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_xdatasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ def test_package_metadata():
contents = f.read()
assert """Sebastien Langlois""" in contents
assert '__email__ = "[email protected]"' in contents
assert '__version__ = "0.3.1"' in contents
assert '__version__ = "0.3.2"' in contents
2 changes: 1 addition & 1 deletion xdatasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

__author__ = """Sebastien Langlois"""
__email__ = "[email protected]"
__version__ = "0.3.1"
__version__ = "0.3.2"

0 comments on commit a15b0fa

Please sign in to comment.