From 8210761e5d7783d07d1b48c21a8da0a402494fe8 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 05:04:09 +0000 Subject: [PATCH] release: 0.1.0-alpha.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ README.md | 2 +- 3 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c476280..ba6c348 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.1-alpha.0" + ".": "0.1.0-alpha.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..277e499 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,31 @@ +# Changelog + +## 0.1.0-alpha.1 (2024-08-13) + +Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/anthropics/anthropic-sdk-go/compare/v0.0.1-alpha.0...v0.1.0-alpha.1) + +### Features + +* publish ([5ff0ff8](https://github.com/anthropics/anthropic-sdk-go/commit/5ff0ff8cc5706c39a6dde75ae69d11c892ef8bb3)) +* simplify system prompt ([#3](https://github.com/anthropics/anthropic-sdk-go/issues/3)) ([ebf3286](https://github.com/anthropics/anthropic-sdk-go/commit/ebf328619a02df63f3524cb77d580b69b1820e1f)) +* simplify system prompt ([#4](https://github.com/anthropics/anthropic-sdk-go/issues/4)) ([d36a828](https://github.com/anthropics/anthropic-sdk-go/commit/d36a828a3bc58c506073ecdb1f899619cbd0bfe9)) + + +### Bug Fixes + +* deserialization of struct unions that implement json.Unmarshaler ([#6](https://github.com/anthropics/anthropic-sdk-go/issues/6)) ([b3f77be](https://github.com/anthropics/anthropic-sdk-go/commit/b3f77be70118ab2f02e02d7e3705c5403fefe78b)) +* handle nil pagination responses when HTTP status is 200 ([#2](https://github.com/anthropics/anthropic-sdk-go/issues/2)) ([ad38619](https://github.com/anthropics/anthropic-sdk-go/commit/ad38619dc8095e4022a958f74c7f3285d5d199e1)) +* message accumulation with union content block ([870ad38](https://github.com/anthropics/anthropic-sdk-go/commit/870ad38130767c80a5d979e848c897a0481b46b2)) + + +### Chores + +* add back custom code ([49f377d](https://github.com/anthropics/anthropic-sdk-go/commit/49f377d7cedf80c16f6915ec226d7fc82d448bdd)) +* bump Go to v1.21 ([#7](https://github.com/anthropics/anthropic-sdk-go/issues/7)) ([c386c36](https://github.com/anthropics/anthropic-sdk-go/commit/c386c36bcf79b31d4961809d554605028bcaf16c)) +* **ci:** bump prism mock server version ([#5](https://github.com/anthropics/anthropic-sdk-go/issues/5)) ([9fcef8c](https://github.com/anthropics/anthropic-sdk-go/commit/9fcef8c2fe9db6bec6886b93af8aa608cc95d91b)) +* **examples:** minor formatting changes ([#8](https://github.com/anthropics/anthropic-sdk-go/issues/8)) ([0c68e1e](https://github.com/anthropics/anthropic-sdk-go/commit/0c68e1e0dd482e311c0fcc26faa6f9c02808b31b)) + + +### Documentation + +* add examples to README ([e8c1696](https://github.com/anthropics/anthropic-sdk-go/commit/e8c1696b4c18107c5570bd8e5698d4f472b0d26b)) diff --git a/README.md b/README.md index cc8def5..91c61f8 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Or to pin the version: ```sh -go get -u 'github.com/anthropics/anthropic-sdk-go@v0.0.1-alpha.0' +go get -u 'github.com/anthropics/anthropic-sdk-go@v0.1.0-alpha.1' ```