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 @@
{
".": "1.69.0"
".": "1.70.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: 139
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-2b77f13a159cf689a3bba6ac5ff03b6c0df62b772e2da04aff52be86710ca4d4.yml
openapi_spec_hash: 28a3f685403d98ddd68b427d92ed28fb
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-91a51960dab258d5435cc2a7f47760fd81e4b711b891a1fde3d98757e85e8add.yml
openapi_spec_hash: 192e4e94264db429260169f0b2e731ce
config_hash: c01c1191b1cd696c7ca855ff6d28a8df
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.70.0 (2026-04-13)

Full Changelog: [v1.69.0...v1.70.0](https://github.com/orbcorp/orb-go/compare/v1.69.0...v1.70.0)

### Features

* **api:** api update ([67d33ed](https://github.com/orbcorp/orb-go/commit/67d33ed8ba052c2d3a4b34930b84c313c54cbe14))

## 1.69.0 (2026-04-11)

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

```sh
go get -u 'github.com/orbcorp/orb-go@v1.69.0'
go get -u 'github.com/orbcorp/orb-go@v1.70.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 = "1.69.0" // x-release-please-version
const PackageVersion = "1.70.0" // x-release-please-version
4 changes: 2 additions & 2 deletions licensetype_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ func TestLicenseTypeNew(t *testing.T) {
option.WithAPIKey("My API Key"),
)
_, err := client.LicenseTypes.New(context.TODO(), orb.LicenseTypeNewParams{
GroupingKey: orb.F("grouping_key"),
Name: orb.F("name"),
GroupingKey: orb.F("x"),
Name: orb.F("x"),
})
if err != nil {
var apierr *orb.Error
Expand Down
Loading