Skip to content

Commit

Permalink
Update makefile to continue release process when no changes, update C…
Browse files Browse the repository at this point in the history
…HANGELOG.md
  • Loading branch information
serra committed Oct 14, 2024
1 parent 90ed1da commit 548cf38
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- Updated Makefile to continue the release process even when there are no changes to commit

## [0.12.2] - 2024-10-11

### Changed
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ release: documentation
@NEW_VERSION=$$(python -m setuptools_scm --strip-dev) && \
sed -i '' "s/\[Unreleased\]/[$${NEW_VERSION}] - $$(date +%Y-%m-%d)/" CHANGELOG.md && \
git add CHANGELOG.md && \
git commit -m "Update CHANGELOG.md for version $${NEW_VERSION}" && \
git commit -m "Update CHANGELOG.md for version $${NEW_VERSION}" -f
git tag v$${NEW_VERSION} && \
git push origin main --tags
docker_image:
Expand Down

0 comments on commit 548cf38

Please sign in to comment.