From d7ae775fc1c25dcbb383ff3668595d6b5d627d72 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Sat, 9 Mar 2024 00:32:17 +0100 Subject: [PATCH] Release v3.9.1 --- CHANGELOG.md | 5 ++++- flake.nix | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 307c982..1772e22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v3.9.1] - 2024-03-09 + - fix release script to bump version number in flake.nix ## [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 - 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.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 diff --git a/flake.nix b/flake.nix index 0da9df4..8dbb43a 100644 --- a/flake.nix +++ b/flake.nix @@ -20,7 +20,7 @@ with pkgs.python3Packages; buildPythonApplication { pname = "matrix-webhook"; - version = "3.9.0"; + version = "3.9.1"; src = pkgs.nix-gitignore.gitignoreSource [ ./.nixignore ] ./.; pyproject = true; buildInputs = [ poetry-core ]; diff --git a/pyproject.toml b/pyproject.toml index f081eaf..19a38e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ license = "BSD-2-Clause" name = "matrix-webhook" readme = "README.md" repository = "https://github.com/nim65s/matrix-webhook.git" -version = "3.9.0" +version = "3.9.1" [tool.poetry.dependencies] Markdown = "^3.5.2"