Skip to content

Commit 9d81abd

Browse files
release: 0.182.0
1 parent cfe2afc commit 9d81abd

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
lines changed

.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.181.0"
2+
".": "0.182.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.182.0 (2025-02-20)
4+
5+
Full Changelog: [v0.181.0...v0.182.0](https://github.com/Increase/increase-java/compare/v0.181.0...v0.182.0)
6+
7+
### Features
8+
9+
* **client:** get rid of annoying checked exceptions ([#790](https://github.com/Increase/increase-java/issues/790)) ([6b370b5](https://github.com/Increase/increase-java/commit/6b370b567becd9edbea337bee86f0b10ab7ea0ca))
10+
* **client:** support `JsonField#asX()` for known values ([#784](https://github.com/Increase/increase-java/issues/784)) ([cb4cc91](https://github.com/Increase/increase-java/commit/cb4cc9194d8a564872dae6834e22b182c78bd52a))
11+
* **client:** update enum `asX` methods ([#783](https://github.com/Increase/increase-java/issues/783)) ([7816b1a](https://github.com/Increase/increase-java/commit/7816b1ac5f779888a1e94a602f84645ee8f58b9d))
12+
13+
14+
### Chores
15+
16+
* **ci:** update gradle actions to v4 ([#789](https://github.com/Increase/increase-java/issues/789)) ([a26984e](https://github.com/Increase/increase-java/commit/a26984ee1b1f776780998e3c0b109b2383899898))
17+
* **docs:** add faq to readme ([#791](https://github.com/Increase/increase-java/issues/791)) ([cfe2afc](https://github.com/Increase/increase-java/commit/cfe2afc8e3309a3dba346e002659f2e576addce4))
18+
* **docs:** reorganize readme ([#785](https://github.com/Increase/increase-java/issues/785)) ([367a3df](https://github.com/Increase/increase-java/commit/367a3dfbf3a822695cc8e1cee6aa9bfd0e8def4d))
19+
* **internal:** get rid of configuration cache ([#788](https://github.com/Increase/increase-java/issues/788)) ([43dae34](https://github.com/Increase/increase-java/commit/43dae3447f7b4416d2e53fd2dcf27296e8b19143))
20+
* **internal:** make body class constructors private ([620882f](https://github.com/Increase/increase-java/commit/620882f220578e011bd38a4e180317d19328e75f))
21+
* **internal:** make body classes for multipart requests ([620882f](https://github.com/Increase/increase-java/commit/620882f220578e011bd38a4e180317d19328e75f))
22+
* **internal:** misc formatting changes ([620882f](https://github.com/Increase/increase-java/commit/620882f220578e011bd38a4e180317d19328e75f))
23+
* **internal:** optimize build and test perf ([2da6705](https://github.com/Increase/increase-java/commit/2da670503c0b19dab0efeaa942d0f9addd0565d4))
24+
* **internal:** rename internal body classes ([620882f](https://github.com/Increase/increase-java/commit/620882f220578e011bd38a4e180317d19328e75f))
25+
* **internal:** update formatter ([#780](https://github.com/Increase/increase-java/issues/780)) ([2da6705](https://github.com/Increase/increase-java/commit/2da670503c0b19dab0efeaa942d0f9addd0565d4))
26+
* **internal:** update some formatting in `Values.kt` ([cb4cc91](https://github.com/Increase/increase-java/commit/cb4cc9194d8a564872dae6834e22b182c78bd52a))
27+
* **internal:** use better test example values ([#782](https://github.com/Increase/increase-java/issues/782)) ([620882f](https://github.com/Increase/increase-java/commit/620882f220578e011bd38a4e180317d19328e75f))
28+
329
## 0.181.0 (2025-02-19)
430

531
Full Changelog: [v0.180.0...v0.181.0](https://github.com/Increase/increase-java/compare/v0.180.0...v0.181.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.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.181.0)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.182.0)
66

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

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

2121
```kotlin
22-
implementation("com.increase.api:increase-java:0.181.0")
22+
implementation("com.increase.api:increase-java:0.182.0")
2323
```
2424

2525
### Maven
@@ -28,7 +28,7 @@ implementation("com.increase.api:increase-java:0.181.0")
2828
<dependency>
2929
<groupId>com.increase.api</groupId>
3030
<artifactId>increase-java</artifactId>
31-
<version>0.181.0</version>
31+
<version>0.182.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.increase.api"
3-
version = "0.181.0" // x-release-please-version
3+
version = "0.182.0" // x-release-please-version
44
}

0 commit comments

Comments
 (0)