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.55.0"
".": "0.56.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 112
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-b7a19ff1fbd93322c8cffcd0b397ce2536ca8bff91594e0081bd030d4bec879f.yml
openapi_spec_hash: 9dd204b37a357b19032aea9eb4496645
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-982efd191c23737c9e1cdbcbf9237fa2231b9f74e0a25db2870293bdf9951c21.yml
openapi_spec_hash: eeb27952a4cc939316c24fc0ce2c9e3a
config_hash: 08d55086449943a8fec212b870061a3f
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.56.0 (2026-05-18)

Full Changelog: [v0.55.0...v0.56.0](https://github.com/kernel/kernel-go-sdk/compare/v0.55.0...v0.56.0)

### Features

* Expose POST /projects in public API ([6f165cd](https://github.com/kernel/kernel-go-sdk/commit/6f165cd1c8bec73f9948c1ee881ca981a32c0ba4))

## 0.55.0 (2026-05-15)

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

```sh
go get -u 'github.com/kernel/kernel-go-sdk@v0.55.0'
go get -u 'github.com/kernel/kernel-go-sdk@v0.56.0'
```

<!-- x-release-please-end -->
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.55.0" // x-release-please-version
const PackageVersion = "0.56.0" // x-release-please-version
3 changes: 1 addition & 2 deletions project.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ func NewProjectService(opts ...option.RequestOption) (r ProjectService) {
return
}

// Create a new project within the authenticated organization. Requires the
// projects feature flag.
// Create a new project within the authenticated organization.
func (r *ProjectService) New(ctx context.Context, body ProjectNewParams, opts ...option.RequestOption) (res *Project, err error) {
opts = slices.Concat(r.Options, opts)
path := "projects"
Expand Down
Loading