From 88f91b22c462cec61cee53ba5ca83178e9546124 Mon Sep 17 00:00:00 2001 From: Phil Varner Date: Wed, 8 Jan 2025 17:22:38 -0500 Subject: [PATCH 1/2] update changelog for release v0.5.0 --- CHANGELOG.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c86d83..95eb79b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [unreleased] +## [v0.5.0] - 2025-01-08 ### Added @@ -36,7 +36,7 @@ none none -## [0.4.0] - 2024-12-11 +## [v0.4.0] - 2024-12-11 ### Added @@ -64,7 +64,7 @@ none none -## [0.3.0] - 2024-12-6 +## [v0.3.0] - 2024-12-6 ### Added @@ -138,7 +138,8 @@ Initial release - Add links `opportunities` and `create-order` to Product - Add link `create-order` to OpportunityCollection -[unreleased]: https://github.com/stapi-spec/stapi-fastapi/compare/v0.4.0...main +[unreleased]: https://github.com/stapi-spec/stapi-fastapi/compare/v0.5.0...main +[v0.4.0]: https://github.com/stapi-spec/stapi-fastapi/tree/v0.5.0 [v0.4.0]: https://github.com/stapi-spec/stapi-fastapi/tree/v0.4.0 [v0.3.0]: https://github.com/stapi-spec/stapi-fastapi/tree/v0.3.0 [v0.2.0]: https://github.com/stapi-spec/stapi-fastapi/tree/v0.2.0 From 8ff0257e0a5fbccd2f7ec65f37f704f47f7fec8c Mon Sep 17 00:00:00 2001 From: Phil Varner Date: Wed, 8 Jan 2025 17:32:00 -0500 Subject: [PATCH 2/2] update changelog with removed method note --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95eb79b..2580740 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Endpoint `/orders/{order_id}/statuses` supporting `GET` for retrieving statuses. The entity returned by this conforms to the change proposed in [stapi-spec#239](https://github.com/stapi-spec/stapi-spec/pull/239). -- RootBackend has new methods `get_order_statuses` and `set_order_status` +- RootBackend has new method `get_order_statuses` - `*args`/`**kwargs` support in RootRouter's `add_product` allows to configure underlyinging ProductRouter ### Changed @@ -27,6 +27,7 @@ none - Endpoint `/orders/{order_id}/statuses` supporting `POST` for updating current status was added and then removed prior to release +- RootBackend method `set_order_status` was added and then removed ### Fixed