Release v3.9.1

This commit is contained in:
Guilhem Saurel 2024-03-09 00:32:17 +01:00
parent 92783892bc
commit d7ae775fc1
3 changed files with 6 additions and 3 deletions

View File

@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [v3.9.1] - 2024-03-09
- fix release script to bump version number in flake.nix - fix release script to bump version number in flake.nix
## [v3.9.0] - 2024-03-09 ## [v3.9.0] - 2024-03-09
@ -123,7 +125,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [v1.0.0] - 2020-02-14 ## [v1.0.0] - 2020-02-14
- First release with matrix-client & http.server - First release with matrix-client & http.server
[Unreleased]: https://github.com/nim65s/matrix-webhook/compare/v3.9.0...master [Unreleased]: https://github.com/nim65s/matrix-webhook/compare/v3.9.1...master
[v3.9.1]: https://github.com/nim65s/matrix-webhook/compare/v3.9.0...v3.9.1
[v3.9.0]: https://github.com/nim65s/matrix-webhook/compare/v3.8.0...v3.9.0 [v3.9.0]: https://github.com/nim65s/matrix-webhook/compare/v3.8.0...v3.9.0
[v3.8.0]: https://github.com/nim65s/matrix-webhook/compare/v3.7.0...v3.8.0 [v3.8.0]: https://github.com/nim65s/matrix-webhook/compare/v3.7.0...v3.8.0
[v3.7.0]: https://github.com/nim65s/matrix-webhook/compare/v3.6.0...v3.7.0 [v3.7.0]: https://github.com/nim65s/matrix-webhook/compare/v3.6.0...v3.7.0

View File

@ -20,7 +20,7 @@
with pkgs.python3Packages; with pkgs.python3Packages;
buildPythonApplication { buildPythonApplication {
pname = "matrix-webhook"; pname = "matrix-webhook";
version = "3.9.0"; version = "3.9.1";
src = pkgs.nix-gitignore.gitignoreSource [ ./.nixignore ] ./.; src = pkgs.nix-gitignore.gitignoreSource [ ./.nixignore ] ./.;
pyproject = true; pyproject = true;
buildInputs = [ poetry-core ]; buildInputs = [ poetry-core ];

View File

@ -13,7 +13,7 @@ license = "BSD-2-Clause"
name = "matrix-webhook" name = "matrix-webhook"
readme = "README.md" readme = "README.md"
repository = "https://github.com/nim65s/matrix-webhook.git" repository = "https://github.com/nim65s/matrix-webhook.git"
version = "3.9.0" version = "3.9.1"
[tool.poetry.dependencies] [tool.poetry.dependencies]
Markdown = "^3.5.2" Markdown = "^3.5.2"