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.52.1"
".": "0.52.2"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.52.2 (2025-04-01)

Full Changelog: [v0.52.1...v0.52.2](https://github.com/orbcorp/orb-java/compare/v0.52.1...v0.52.2)

### Bug Fixes

* pluralize `list` response variables ([#377](https://github.com/orbcorp/orb-java/issues/377)) ([a5c3fd9](https://github.com/orbcorp/orb-java/commit/a5c3fd99651cab3397ec6233647e011a5468f3b7))


### Chores

* **internal:** codegen related update ([#376](https://github.com/orbcorp/orb-java/issues/376)) ([bb5383e](https://github.com/orbcorp/orb-java/commit/bb5383eca5483d294c9864d04fa767ae9de1d7e1))
* **internal:** version bump ([#374](https://github.com/orbcorp/orb-java/issues/374)) ([1ae8e22](https://github.com/orbcorp/orb-java/commit/1ae8e22edff40a5be261fdc2d7ba71860f3a7d42))

## 0.52.1 (2025-03-31)

Full Changelog: [v0.52.0...v0.52.1](https://github.com/orbcorp/orb-java/compare/v0.52.0...v0.52.1)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- x-release-please-start-version -->

[![Maven Central](https://img.shields.io/maven-central/v/com.withorb.api/orb-java)](https://central.sonatype.com/artifact/com.withorb.api/orb-java/0.52.1)
[![Maven Central](https://img.shields.io/maven-central/v/com.withorb.api/orb-java)](https://central.sonatype.com/artifact/com.withorb.api/orb-java/0.52.2)

<!-- x-release-please-end -->

Expand All @@ -19,7 +19,7 @@ The REST API documentation can be found on [docs.withorb.com](https://docs.witho
### Gradle

```kotlin
implementation("com.withorb.api:orb-java:0.52.1")
implementation("com.withorb.api:orb-java:0.52.2")
```

### Maven
Expand All @@ -28,7 +28,7 @@ implementation("com.withorb.api:orb-java:0.52.1")
<dependency>
<groupId>com.withorb.api</groupId>
<artifactId>orb-java</artifactId>
<version>0.52.1</version>
<version>0.52.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
allprojects {
group = "com.withorb.api"
version = "0.52.1" // x-release-please-version
version = "0.52.2" // x-release-please-version
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ internal class CostServiceAsyncTest {
.build()
val costServiceAsync = client.customers().costs()

val costFuture =
val costsFuture =
costServiceAsync.list(
CustomerCostListParams.builder()
.customerId("customer_id")
Expand All @@ -33,8 +33,8 @@ internal class CostServiceAsyncTest {
.build()
)

val cost = costFuture.get()
cost.validate()
val costs = costsFuture.get()
costs.validate()
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ internal class CostServiceTest {
.build()
val costService = client.customers().costs()

val cost =
val costs =
costService.list(
CustomerCostListParams.builder()
.customerId("customer_id")
Expand All @@ -33,7 +33,7 @@ internal class CostServiceTest {
.build()
)

cost.validate()
costs.validate()
}

@Test
Expand Down