From 1a37662f80e75a7d2901373606ddfc9c31bbd596 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 18:58:16 +0000 Subject: [PATCH] release: 0.1.0-alpha.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ README.md | 4 ++-- build.gradle.kts | 2 +- 4 files changed, 35 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c476280..ba6c348 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.1-alpha.0" + ".": "0.1.0-alpha.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b3c5a09 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,31 @@ +# Changelog + +## 0.1.0-alpha.1 (2024-10-07) + +Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/OneBusAway/kotlin-sdk/compare/v0.0.1-alpha.0...v0.1.0-alpha.1) + +### Features + +* **api:** manual updates ([d0267a5](https://github.com/OneBusAway/kotlin-sdk/commit/d0267a5f06efcbab817698acb063a9fbea1805c5)) +* **api:** OpenAPI spec update via Stainless API ([46aae7e](https://github.com/OneBusAway/kotlin-sdk/commit/46aae7ef7c7a67af16d997c9e17558adb8377e06)) +* **api:** OpenAPI spec update via Stainless API ([12a89d3](https://github.com/OneBusAway/kotlin-sdk/commit/12a89d388b5ba7a184dcea6c4947184319228e05)) +* **client:** added structured fields to errors ([b2ad442](https://github.com/OneBusAway/kotlin-sdk/commit/b2ad442cff5aee1e35514db58743bdab5dc2d698)) + + +### Bug Fixes + +* use kotlin.collections.List instead of List directly ([e475fd4](https://github.com/OneBusAway/kotlin-sdk/commit/e475fd415edbdb7bde7470bda1e88388fd9f730e)) + + +### Chores + +* configure new SDK language ([2953eac](https://github.com/OneBusAway/kotlin-sdk/commit/2953eac8695259a185948c25f098a9c2e0a470b3)) +* go live ([#1](https://github.com/OneBusAway/kotlin-sdk/issues/1)) ([d7a641b](https://github.com/OneBusAway/kotlin-sdk/commit/d7a641bbc3828e3c3bdac88bc5b86be6a8e9c4da)) +* **internal:** codegen related update ([70343ca](https://github.com/OneBusAway/kotlin-sdk/commit/70343ca34bd378681943257c700bd076adf2871a)) +* **internal:** codegen related update ([353cd5e](https://github.com/OneBusAway/kotlin-sdk/commit/353cd5e609f5a65b9469e20768a0c8a8f5e7dff0)) +* update SDK settings ([7a84601](https://github.com/OneBusAway/kotlin-sdk/commit/7a846012727eb202e0a7f4bc84f8c125ca351835)) + + +### Documentation + +* adjust additional properties example ([62b94a1](https://github.com/OneBusAway/kotlin-sdk/commit/62b94a1ddf192c27a495be308100aeb056a57d2e)) diff --git a/README.md b/README.md index 8bd6bf2..fec0c2f 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ The REST API documentation can be foundĀ on [developer.onebusaway.org](https://d ```kotlin -implementation("org.onebusaway:onebusaway-sdk-kotlin:0.0.1-alpha.0") +implementation("org.onebusaway:onebusaway-sdk-kotlin:0.1.0-alpha.1") ``` #### Maven @@ -30,7 +30,7 @@ implementation("org.onebusaway:onebusaway-sdk-kotlin:0.0.1-alpha.0") org.onebusaway onebusaway-sdk-kotlin - 0.0.1-alpha.0 + 0.1.0-alpha.1 ``` diff --git a/build.gradle.kts b/build.gradle.kts index b73ed80..1722d92 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "org.onebusaway" - version = "0.0.1-alpha.0" // x-release-please-version + version = "0.1.0-alpha.1" // x-release-please-version } nexusPublishing {