Skip to content

Commit

Permalink
build: ⬆️ v0.22.5 (#1008)
Browse files Browse the repository at this point in the history
* build: ⬆️ Update to next version

* ci: 👷 Change detection of minor release for auto deleting of previous minor version

* ci: ⬇️ Bump back from `v4` to `v3.1.4`
  • Loading branch information
Anselmoo authored Sep 15, 2023
1 parent 207afda commit ec593aa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Test SpectraFit
run: poetry run pytest
- name: Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3.1.4
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: OS,PYTHON
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
current_tag=${{ github.event.release.tag_name }}
prev_tag=${{ steps.prev_tag.outputs.prev_tag }}
latest_tag=$(git describe --tags --abbrev=0 ${{ steps.latest_tag.outputs.latest_tag }})
if [[ $current_tag =~ ^${latest_tag%.*}\.[0-9]+$ && $prev_tag =~ ^${latest_tag%.*}\.[0-9]+\.[0-9]+$ ]]; then
if [[ $current_tag =~ ^${latest_tag%.*}\.[0-9]+$ && $prev_tag =~ ^${latest_tag%.*}\.[0-9]+$ ]]; then
echo "::set-output name=is_minor::true"
else
echo "::set-output name=is_minor::false"
Expand Down
12 changes: 6 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 = "SpectraFit"
version = "0.22.4"
version = "0.22.5"
description = "Fast fitting of 2D- and 3D-Spectra with established routines"
readme = "README.md"
authors = ["Anselm Hahn <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion spectrafit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""SpectraFit, fast command line tool for fitting data."""
__version__ = "0.22.4"
__version__ = "0.22.5"

0 comments on commit ec593aa

Please sign in to comment.