Skip to content

Commit

Permalink
Fix bumpversion configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
BSchilperoort committed Apr 13, 2024
1 parent fff5722 commit c593be1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ tag = True
search = {current_version}.
replace = {new_version}.

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

[bumpversion:file:docs/conf.py]
search = version = release = "{current_version}"
replace = version = release = "{new_version}"
search = "{current_version}"
replace = "{new_version}"

[bumpversion:file:CITATION.cff]
search = "v{current_version}"
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,6 @@ Cite the specific implementation / repository via Zenodo:
>>> # The following line introduces the .dts accessor for xarray datasets
>>> import dtscalibration # noqa: E401
>>> dtscalibration.__version__
'3.0.0'
'3.0.1'
2. Go to `Zenodo <https://zenodo.org/search?q=conceptrecid:%221410097%22&sort=-version&all_versions=True>`_ and follow the link to the version of interest.
3. The citation is found on the bottom right of the page.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ disable = true # Requires confirmation when publishing to pypi.

[project]
name = "dtscalibration"
version = "3.0.0"
version = "3.0.1"
description = "Load Distributed Temperature Sensing (DTS) files, calibrate the temperature and estimate its uncertainty."
readme = "README.rst"
license = "BSD-3-Clause"
Expand Down

0 comments on commit c593be1

Please sign in to comment.