From 0493986350966635ab51f0a923ffa8e0f9f1b521 Mon Sep 17 00:00:00 2001 From: Luke Kingland Date: Mon, 10 Feb 2025 13:06:48 +0900 Subject: [PATCH] Release v0.3.0 --- CHANGELOG.md | 15 +++++++++------ pyproject.toml | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b415d1f4..a4e951a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +### Added +### Changed +### Deprecated +### Removed +### Fixed +### Security + +## [0.3.0] - 2025-02-10 + ### Added - Instanced handlers now support OnStop events @@ -17,12 +26,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Simplified instanced functions by expecting a named 'handle' method. - Tests support specifying test service listen address -### Deprecated -### Removed -### Fixed -### Security - - ## [0.2.0] - 2024-11-06 ### Added diff --git a/pyproject.toml b/pyproject.toml index c4a06820..63917769 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "func-python" -version = "0.2.0" +version = "0.3.0" description = "Knative Functions Python Middleware" authors = ["The Knative Authors "] readme = "README.md"