Skip to content

Commit

Permalink
fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s committed Mar 8, 2024
1 parent 793994d commit 9278389
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- fix release script to bump version number in flake.nix

## [v3.9.0] - 2024-03-09

- add github-release-notifier formatter
Expand Down
2 changes: 1 addition & 1 deletion docs/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sed -i "/^\[Unreleased\]/s/$OLD/$NEW/" CHANGELOG.md
sed -i "/^\[Unreleased\]/a [v$NEW]: https://github.com/nim65s/matrix-webhook/compare/v$OLD...v$NEW" CHANGELOG.md
sed -i "/version/s/$OLD/$NEW/" flake.nix

git add pyproject.toml CHANGELOG.md
git add pyproject.toml CHANGELOG.md flake.nix
git commit -m "Release v$NEW"
git tag -s "v$NEW" -m "Release v$NEW"
git push
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
with pkgs.python3Packages;
buildPythonApplication {
pname = "matrix-webhook";
version = "3.8.0";
version = "3.9.0";
src = pkgs.nix-gitignore.gitignoreSource [ ./.nixignore ] ./.;
pyproject = true;
buildInputs = [ poetry-core ];
Expand Down

0 comments on commit 9278389

Please sign in to comment.