Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0"
".": "0.2.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 7
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-39aa058a60035c34a636e7f580b4b9c76b05400ae401ef04a761572b20a5425b.yml
openapi_spec_hash: bb79a204f9edb6b6ccfe783a0a82a423
config_hash: 5c90b7df80e8f222bb945b14b8d1fec0
config_hash: 3eb1ed1dd0067258984b31d53a0dab48
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.2.0 (2025-05-21)

Full Changelog: [v0.1.0...v0.2.0](https://github.com/onkernel/kernel-go-sdk/compare/v0.1.0...v0.2.0)

### Features

* **api:** update via SDK Studio ([788354c](https://github.com/onkernel/kernel-go-sdk/commit/788354c6debdf1f4608c31acaa6bf422af3f6306))

## 0.1.0 (2025-05-21)

Full Changelog: [v0.1.0-alpha.6...v0.1.0](https://github.com/onkernel/kernel-go-sdk/compare/v0.1.0-alpha.6...v0.1.0)
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Or to pin the version:
<!-- x-release-please-start-version -->

```sh
go get -u 'github.com/onkernel/kernel-go-sdk@v0.1.0'
go get -u 'github.com/onkernel/kernel-go-sdk@v0.2.0'
```

<!-- x-release-please-end -->
Expand Down Expand Up @@ -60,7 +60,6 @@ func main() {
File: io.Reader(bytes.NewBuffer([]byte("REPLACE_ME"))),
EnvVars: map[string]string{
"OPENAI_API_KEY": "x",
"LOG_LEVEL": "debug",
},
Version: kernel.String("1.0.0"),
})
Expand Down
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package internal

const PackageVersion = "0.1.0" // x-release-please-version
const PackageVersion = "0.2.0" // x-release-please-version
1 change: 0 additions & 1 deletion usage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ func TestUsage(t *testing.T) {
File: io.Reader(bytes.NewBuffer([]byte("REPLACE_ME"))),
EnvVars: map[string]string{
"OPENAI_API_KEY": "x",
"LOG_LEVEL": "debug",
},
Version: kernel.String("1.0.0"),
})
Expand Down