From f0fb74f4c55e94ff941ffcd9502710369af0d86f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 17:00:19 +0000 Subject: [PATCH] release: 2.17.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 26 ++++++++++++++++++++++++++ README.md | 2 +- internal/version.go | 2 +- 4 files changed, 29 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b2585653..c1a7e63f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.16.0" + ".": "2.17.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index a24b9e9e..11c5ee20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## 2.17.0 (2024-08-13) + +Full Changelog: [v2.16.0...v2.17.0](https://github.com/Modern-Treasury/modern-treasury-go/compare/v2.16.0...v2.17.0) + +### Features + +* **api:** add pagination params 'created at' and 'updated at' ([#261](https://github.com/Modern-Treasury/modern-treasury-go/issues/261)) ([31177a6](https://github.com/Modern-Treasury/modern-treasury-go/commit/31177a6c449aa77d13d75936846db1a97038ee44)) +* **api:** updates ([#267](https://github.com/Modern-Treasury/modern-treasury-go/issues/267)) ([62fac37](https://github.com/Modern-Treasury/modern-treasury-go/commit/62fac37bcc22e140999543ab6aa3d9ab06661c0a)) + + +### Bug Fixes + +* deserialization of struct unions that implement json.Unmarshaler ([#264](https://github.com/Modern-Treasury/modern-treasury-go/issues/264)) ([3b9fcd2](https://github.com/Modern-Treasury/modern-treasury-go/commit/3b9fcd230982fb949f7f396cccecd5a237a9620a)) +* handle nil pagination responses when HTTP status is 200 ([#260](https://github.com/Modern-Treasury/modern-treasury-go/issues/260)) ([383d064](https://github.com/Modern-Treasury/modern-treasury-go/commit/383d0643c6c2699f0163abe9e39332ca6eafed8c)) +* improve name for single-keyed union member ([#262](https://github.com/Modern-Treasury/modern-treasury-go/issues/262)) ([7df1ce3](https://github.com/Modern-Treasury/modern-treasury-go/commit/7df1ce39d034187754f053cf23b8e327c5270ae3)) + + +### Chores + +* bump Go to v1.21 ([#265](https://github.com/Modern-Treasury/modern-treasury-go/issues/265)) ([752d718](https://github.com/Modern-Treasury/modern-treasury-go/commit/752d7180072fcd237e6e19a2c89579574d078cbc)) +* **ci:** bump prism mock server version ([#263](https://github.com/Modern-Treasury/modern-treasury-go/issues/263)) ([2202b23](https://github.com/Modern-Treasury/modern-treasury-go/commit/2202b23ef7dda975b55bd3caba553cab9d4410e3)) +* **ci:** limit release doctor target branches ([#256](https://github.com/Modern-Treasury/modern-treasury-go/issues/256)) ([7e0563b](https://github.com/Modern-Treasury/modern-treasury-go/commit/7e0563b3118ebd2d96dd1fa8a7a80371b17e511b)) +* **ci:** remove unused release doctor ([#258](https://github.com/Modern-Treasury/modern-treasury-go/issues/258)) ([33acece](https://github.com/Modern-Treasury/modern-treasury-go/commit/33aceceb2510f8d7ea56c152f210e4471fdd60ba)) +* **examples:** minor formatting changes ([#266](https://github.com/Modern-Treasury/modern-treasury-go/issues/266)) ([144f4bd](https://github.com/Modern-Treasury/modern-treasury-go/commit/144f4bdb2445b3d311a88f6b2b7e5c50e346a5fc)) +* **tests:** update prism version ([#259](https://github.com/Modern-Treasury/modern-treasury-go/issues/259)) ([7a03f6f](https://github.com/Modern-Treasury/modern-treasury-go/commit/7a03f6f54daa7a4c6106965122f82b2d32b5e012)) + ## 2.16.0 (2024-07-15) Full Changelog: [v2.15.0...v2.16.0](https://github.com/Modern-Treasury/modern-treasury-go/compare/v2.15.0...v2.16.0) diff --git a/README.md b/README.md index 1ec49318..fdd42b22 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Or to pin the version: ```sh -go get -u 'github.com/Modern-Treasury/modern-treasury-go/v2@v2.16.0' +go get -u 'github.com/Modern-Treasury/modern-treasury-go/v2@v2.17.0' ``` diff --git a/internal/version.go b/internal/version.go index ad64bb58..97ebeba7 100644 --- a/internal/version.go +++ b/internal/version.go @@ -2,4 +2,4 @@ package internal -const PackageVersion = "2.16.0" // x-release-please-version +const PackageVersion = "2.17.0" // x-release-please-version