Skip to content

Commit 1c6b52f

Browse files
release: 0.182.0
1 parent 367a3df commit 1c6b52f

File tree

4 files changed

+27
-5
lines changed

4 files changed

+27
-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: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
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:** support `JsonField#asX()` for known values ([#784](https://github.com/Increase/increase-java/issues/784)) ([cb4cc91](https://github.com/Increase/increase-java/commit/cb4cc9194d8a564872dae6834e22b182c78bd52a))
10+
* **client:** update enum `asX` methods ([#783](https://github.com/Increase/increase-java/issues/783)) ([7816b1a](https://github.com/Increase/increase-java/commit/7816b1ac5f779888a1e94a602f84645ee8f58b9d))
11+
12+
13+
### Chores
14+
15+
* **docs:** reorganize readme ([#785](https://github.com/Increase/increase-java/issues/785)) ([367a3df](https://github.com/Increase/increase-java/commit/367a3dfbf3a822695cc8e1cee6aa9bfd0e8def4d))
16+
* **internal:** make body class constructors private ([620882f](https://github.com/Increase/increase-java/commit/620882f220578e011bd38a4e180317d19328e75f))
17+
* **internal:** make body classes for multipart requests ([620882f](https://github.com/Increase/increase-java/commit/620882f220578e011bd38a4e180317d19328e75f))
18+
* **internal:** misc formatting changes ([620882f](https://github.com/Increase/increase-java/commit/620882f220578e011bd38a4e180317d19328e75f))
19+
* **internal:** optimize build and test perf ([2da6705](https://github.com/Increase/increase-java/commit/2da670503c0b19dab0efeaa942d0f9addd0565d4))
20+
* **internal:** rename internal body classes ([620882f](https://github.com/Increase/increase-java/commit/620882f220578e011bd38a4e180317d19328e75f))
21+
* **internal:** update formatter ([#780](https://github.com/Increase/increase-java/issues/780)) ([2da6705](https://github.com/Increase/increase-java/commit/2da670503c0b19dab0efeaa942d0f9addd0565d4))
22+
* **internal:** update some formatting in `Values.kt` ([cb4cc91](https://github.com/Increase/increase-java/commit/cb4cc9194d8a564872dae6834e22b182c78bd52a))
23+
* **internal:** use better test example values ([#782](https://github.com/Increase/increase-java/issues/782)) ([620882f](https://github.com/Increase/increase-java/commit/620882f220578e011bd38a4e180317d19328e75f))
24+
325
## 0.181.0 (2025-02-19)
426

527
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)