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.1.0"
".": "1.2.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: 116
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-ff68c7ee2669d61716781d01b93f34186fb7a19ff4ad6fc2c0b8f9f4d9c4a588.yml
openapi_spec_hash: 17bdc6b1ca2531dc884c6d156f404f0c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-d4db2933d3d6b8c855e3351dcce658777ec9a413eb78f176b2e63b1e99fddf68.yml
openapi_spec_hash: 858adc7f2e0c8c631ef733dfd8f9ea0a
config_hash: 3c3524be9607afb24d2139ce26ce5389
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.2.0 (2025-07-04)

Full Changelog: [v1.1.0...v1.2.0](https://github.com/orbcorp/orb-java/compare/v1.1.0...v1.2.0)

### Features

* **api:** api update ([0c0d055](https://github.com/orbcorp/orb-java/commit/0c0d055d53263ebe52c445e97f6e16ebab01357f))

## 1.1.0 (2025-07-02)

Full Changelog: [v1.0.0...v1.1.0](https://github.com/orbcorp/orb-java/compare/v1.0.0...v1.1.0)
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/1.1.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.withorb.api/orb-java)](https://central.sonatype.com/artifact/com.withorb.api/orb-java/1.2.0)

<!-- 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:1.1.0")
implementation("com.withorb.api:orb-java:1.2.0")
```

### Maven
Expand All @@ -28,7 +28,7 @@ implementation("com.withorb.api:orb-java:1.1.0")
<dependency>
<groupId>com.withorb.api</groupId>
<artifactId>orb-java</artifactId>
<version>1.1.0</version>
<version>1.2.0</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 = "1.1.0" // x-release-please-version
version = "1.2.0" // x-release-please-version
}
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,6 @@ private constructor(

@JvmField val ANNUAL = of("annual")

@JvmField val CUSTOM = of("custom")

@JvmStatic fun of(value: String) = Cadence(JsonField.of(value))
}

Expand All @@ -377,7 +375,6 @@ private constructor(
QUARTERLY,
SEMI_ANNUAL,
ANNUAL,
CUSTOM,
}

/**
Expand All @@ -395,7 +392,6 @@ private constructor(
QUARTERLY,
SEMI_ANNUAL,
ANNUAL,
CUSTOM,
/** An enum member indicating that [Cadence] was instantiated with an unknown value. */
_UNKNOWN,
}
Expand All @@ -414,7 +410,6 @@ private constructor(
QUARTERLY -> Value.QUARTERLY
SEMI_ANNUAL -> Value.SEMI_ANNUAL
ANNUAL -> Value.ANNUAL
CUSTOM -> Value.CUSTOM
else -> Value._UNKNOWN
}

Expand All @@ -433,7 +428,6 @@ private constructor(
QUARTERLY -> Known.QUARTERLY
SEMI_ANNUAL -> Known.SEMI_ANNUAL
ANNUAL -> Known.ANNUAL
CUSTOM -> Known.CUSTOM
else -> throw OrbInvalidDataException("Unknown Cadence: $value")
}

Expand Down
Loading