diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ee49ac2..fd0ccba 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.11" + ".": "0.1.0-alpha.12" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 848cfc3..12eb91d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-alpha.12 (2025-01-01) + +Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/openlayer-ai/openlayer-go/compare/v0.1.0-alpha.11...v0.1.0-alpha.12) + +### Chores + +* **internal:** codegen related update ([#59](https://github.com/openlayer-ai/openlayer-go/issues/59)) ([5df4e4d](https://github.com/openlayer-ai/openlayer-go/commit/5df4e4d53d5aa087e7e733a20dd52cd4783e5c2b)) + ## 0.1.0-alpha.11 (2024-12-19) Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/openlayer-ai/openlayer-go/compare/v0.1.0-alpha.10...v0.1.0-alpha.11) diff --git a/README.md b/README.md index 91e5f12..1e29f4b 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Or to pin the version: ```sh -go get -u 'github.com/openlayer-ai/openlayer-go@v0.1.0-alpha.11' +go get -u 'github.com/openlayer-ai/openlayer-go@v0.1.0-alpha.12' ``` @@ -125,7 +125,7 @@ if res.Name == "" { // true if `"name"` is either not present or explicitly null res.JSON.Name.IsNull() - // true if the `"name"` key was not present in the repsonse JSON at all + // true if the `"name"` key was not present in the response JSON at all res.JSON.Name.IsMissing() // When the API returns data that cannot be coerced to the expected type: diff --git a/internal/version.go b/internal/version.go index dec22ba..4cd53ff 100644 --- a/internal/version.go +++ b/internal/version.go @@ -2,4 +2,4 @@ package internal -const PackageVersion = "0.1.0-alpha.11" // x-release-please-version +const PackageVersion = "0.1.0-alpha.12" // x-release-please-version