Skip to content

Commit 2b34a91

Browse files
chore: Release v0.1.0 (#3)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: David Letterman <48985810+david-letterman@users.noreply.github.com>
1 parent 23c4ab4 commit 2b34a91

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

.github/release-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{}
1+
{".":"0.1.0"}

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Changelog
2+
3+
## 0.1.0 (2024-04-18)
4+
5+
6+
### New features
7+
8+
* Add the initial Anthropic SDK implementation ([#1](https://github.com/unfunco/anthropic-sdk-go/issues/1)) ([b3bf332](https://github.com/unfunco/anthropic-sdk-go/commit/b3bf332e64d75e8485b26a6ecc609a497f183cbd))
9+
10+
11+
### Miscellaneous
12+
13+
* Add an update-user-agent composite action ([#7](https://github.com/unfunco/anthropic-sdk-go/issues/7)) ([5cf68b7](https://github.com/unfunco/anthropic-sdk-go/commit/5cf68b7f966da669477f3d2412a10d189489de3f))
14+
* Add some repository boilerplate ([bfb93b6](https://github.com/unfunco/anthropic-sdk-go/commit/bfb93b6023bb9369ef42fc1fc2d28172b9a35d2c))
15+
* Apply the MIT license and add a README ([1f87886](https://github.com/unfunco/anthropic-sdk-go/commit/1f87886531a5c17a06c60a646ea0771872144686))
16+
* Configure an initial release process ([#2](https://github.com/unfunco/anthropic-sdk-go/issues/2)) ([b49ea86](https://github.com/unfunco/anthropic-sdk-go/commit/b49ea8602d1ca2c033a761cf7ad2ca20bc26fe7d))
17+
* Improve documentation in source files ([#4](https://github.com/unfunco/anthropic-sdk-go/issues/4)) ([8124555](https://github.com/unfunco/anthropic-sdk-go/commit/8124555f31e647f6de0d4a236b27dfb9324970a5))
18+
* Improve installation and usage instructions ([#9](https://github.com/unfunco/anthropic-sdk-go/issues/9)) ([23c4ab4](https://github.com/unfunco/anthropic-sdk-go/commit/23c4ab4f32c3347f062944270f85c580813ea66c))
19+
* Initialise the repository ([c2b5cc2](https://github.com/unfunco/anthropic-sdk-go/commit/c2b5cc271f4deec7c6f5671a467130be96754b8a))
20+
* Push version changes to the release branch ([#6](https://github.com/unfunco/anthropic-sdk-go/issues/6)) ([2d5abaf](https://github.com/unfunco/anthropic-sdk-go/commit/2d5abaf1b589609c2325cc767f51015c0eb78fc5))
21+
* Reformat the LICENSE.md document ([#8](https://github.com/unfunco/anthropic-sdk-go/issues/8)) ([725d14a](https://github.com/unfunco/anthropic-sdk-go/commit/725d14ac813b34225a5e282280d0f3d2736c6c8a))
22+
* Update version when releases are published ([#5](https://github.com/unfunco/anthropic-sdk-go/issues/5)) ([82fe560](https://github.com/unfunco/anthropic-sdk-go/commit/82fe56045cb9fd2e09891a523d92dbcf5bc5d9a9))

anthropic.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
const (
1515
defaultAPIVersion = "2023-06-01"
1616
defaultBaseURL = "https://api.anthropic.com/v1/"
17-
defaultUserAgent = "unfunco/anthropic-sdk-go@v0.0.0"
17+
defaultUserAgent = "unfunco/anthropic-sdk-go@v0.1.0"
1818
)
1919

2020
// Client manages communication with the Anthropic REST API.

0 commit comments

Comments
 (0)