Skip to content

Commit

Permalink
release: 0.1.0-beta.1 (#17)
Browse files Browse the repository at this point in the history
* chore(internal): codegen related update (#16)

* feat(api): update via SDK Studio (#18)

* release: 0.1.0-beta.1

---------

Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
  • Loading branch information
stainless-app[bot] authored Jan 14, 2025
1 parent 66d8ef0 commit a5a3db3
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 5 deletions.
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-alpha.4"
".": "0.1.0-beta.1"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 5
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/prelude%2Fprelude-f4068a5a3ee027f16de68f9f411e9f52a83354e76ad8291ec02c4b7a1b53ccd3.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/prelude%2Fprelude-76adb3ec741cc2142bfab5258e5a81c5dddf75376e28b20d794bfc22cd66dd85.yml
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.1.0-beta.1 (2025-01-14)

Full Changelog: [v0.1.0-alpha.4...v0.1.0-beta.1](https://github.com/prelude-so/go-sdk/compare/v0.1.0-alpha.4...v0.1.0-beta.1)

### Features

* **api:** update via SDK Studio ([#18](https://github.com/prelude-so/go-sdk/issues/18)) ([3264fcd](https://github.com/prelude-so/go-sdk/commit/3264fcdb8104274178ed78342b01a9512d1fa1ca))


### Chores

* **internal:** codegen related update ([#16](https://github.com/prelude-so/go-sdk/issues/16)) ([a3f1fef](https://github.com/prelude-so/go-sdk/commit/a3f1fefac1137c42aa92e7c3d4b31b1f3160f75a))

## 0.1.0-alpha.4 (2025-01-08)

Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/prelude-so/go-sdk/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
Expand Down
4 changes: 2 additions & 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/prelude-so/[email protected]alpha.4'
go get -u 'github.com/prelude-so/[email protected]beta.1'
```

<!-- x-release-please-end -->
Expand Down Expand Up @@ -352,7 +352,7 @@ middleware has been applied.

This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:

1. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals)_.
1. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
2. Changes that we do not expect to impact the vast majority of users in practice.

We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
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-alpha.4" // x-release-please-version
const PackageVersion = "0.1.0-beta.1" // x-release-please-version
2 changes: 2 additions & 0 deletions verification.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,8 @@ func (r verificationCheckResponseMetadataJSON) RawJSON() string {
type VerificationNewParams struct {
// The target. Currently this can only be an E.164 formatted phone number.
Target param.Field[VerificationNewParamsTarget] `json:"target,required"`
// The identifier of the dispatch that came from the front-end SDK.
DispatchID param.Field[string] `json:"dispatch_id"`
// The metadata for this verification. This object will be returned with every
// response or webhook sent that refers to this verification.
Metadata param.Field[VerificationNewParamsMetadata] `json:"metadata"`
Expand Down
1 change: 1 addition & 0 deletions verification_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ func TestVerificationNewWithOptionalParams(t *testing.T) {
Type: prelude.F(prelude.VerificationNewParamsTargetTypePhoneNumber),
Value: prelude.F("+30123456789"),
}),
DispatchID: prelude.F("dispatch_id"),
Metadata: prelude.F(prelude.VerificationNewParamsMetadata{
CorrelationID: prelude.F("correlation_id"),
}),
Expand Down

0 comments on commit a5a3db3

Please sign in to comment.