Skip to content

Commit dd7ff51

Browse files
release: 0.33.0
1 parent af87d7c commit dd7ff51

4 files changed

Lines changed: 31 additions & 5 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.32.0"
2+
".": "0.33.0"
33
}

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## 0.33.0 (2025-02-20)
4+
5+
Full Changelog: [v0.32.0...v0.33.0](https://github.com/orbcorp/orb-java/compare/v0.32.0...v0.33.0)
6+
7+
### Features
8+
9+
* **api:** api update ([#264](https://github.com/orbcorp/orb-java/issues/264)) ([49f679f](https://github.com/orbcorp/orb-java/commit/49f679f62e3fa725e68c45d6c43a3ec9021deb8d))
10+
* **client:** get rid of annoying checked exceptions ([#260](https://github.com/orbcorp/orb-java/issues/260)) ([ffc9682](https://github.com/orbcorp/orb-java/commit/ffc968253c1b7ea7d8694edadddd0d9bfc0a267d))
11+
12+
13+
### Bug Fixes
14+
15+
* **client:** mark some request bodies as optional ([#263](https://github.com/orbcorp/orb-java/issues/263)) ([c6f1170](https://github.com/orbcorp/orb-java/commit/c6f11707fd576970378f6d24e41829cb6dcbce36))
16+
17+
18+
### Chores
19+
20+
* **docs:** add faq to readme ([#262](https://github.com/orbcorp/orb-java/issues/262)) ([67226ff](https://github.com/orbcorp/orb-java/commit/67226ffb755caaa59df0771cfb3443a31dc7d16f))
21+
* **internal:** remove unnecessary non-null asserts in tests ([c6f1170](https://github.com/orbcorp/orb-java/commit/c6f11707fd576970378f6d24e41829cb6dcbce36))
22+
* **internal:** use `assertNotNull` in tests for type narrowing ([c6f1170](https://github.com/orbcorp/orb-java/commit/c6f11707fd576970378f6d24e41829cb6dcbce36))
23+
24+
25+
### Documentation
26+
27+
* add immutability explanation to readme ([#265](https://github.com/orbcorp/orb-java/issues/265)) ([2fee757](https://github.com/orbcorp/orb-java/commit/2fee7570279fb4b446d159b272f056b9fa33c8b6))
28+
329
## 0.32.0 (2025-02-20)
430

531
Full Changelog: [v0.31.1...v0.32.0](https://github.com/orbcorp/orb-java/compare/v0.31.1...v0.32.0)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
[![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.32.0)
5+
[![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.33.0)
66

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

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

2121
```kotlin
22-
implementation("com.withorb.api:orb-java:0.32.0")
22+
implementation("com.withorb.api:orb-java:0.33.0")
2323
```
2424

2525
### Maven
@@ -28,7 +28,7 @@ implementation("com.withorb.api:orb-java:0.32.0")
2828
<dependency>
2929
<groupId>com.withorb.api</groupId>
3030
<artifactId>orb-java</artifactId>
31-
<version>0.32.0</version>
31+
<version>0.33.0</version>
3232
</dependency>
3333
```
3434

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
allprojects {
22
group = "com.withorb.api"
3-
version = "0.32.0" // x-release-please-version
3+
version = "0.33.0" // x-release-please-version
44
}

0 commit comments

Comments
 (0)