Skip to content

Commit 08fb7d9

Browse files
release: 1.1.0
1 parent f1b9c1c commit 08fb7d9

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-6
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-
".": "1.0.0"
2+
".": "1.1.0"
33
}

CHANGELOG.md

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

3+
## 1.1.0 (2025-03-11)
4+
5+
Full Changelog: [v1.0.0...v1.1.0](https://github.com/terminaldotshop/terminal-sdk-java/compare/v1.0.0...v1.1.0)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* **client:** move classes into subpackages and shorten names ([#124](https://github.com/terminaldotshop/terminal-sdk-java/issues/124))
10+
11+
### Features
12+
13+
* **api:** gift cards ([#125](https://github.com/terminaldotshop/terminal-sdk-java/issues/125)) ([f1b9c1c](https://github.com/terminaldotshop/terminal-sdk-java/commit/f1b9c1c100997b8fb46bcc0d660b7d072bfe3a4b))
14+
15+
16+
### Chores
17+
18+
* **client:** move classes into subpackages and shorten names ([#124](https://github.com/terminaldotshop/terminal-sdk-java/issues/124)) ([09af66e](https://github.com/terminaldotshop/terminal-sdk-java/commit/09af66ed6e580cfaf74f3a224ad776d1de663ef1))
19+
* **internal:** version bump ([#120](https://github.com/terminaldotshop/terminal-sdk-java/issues/120)) ([9f816fd](https://github.com/terminaldotshop/terminal-sdk-java/commit/9f816fd96ae66fe9e66f58d35ef6a3afb3930cb0))
20+
21+
22+
### Documentation
23+
24+
* document `JsonValue` construction in readme ([#123](https://github.com/terminaldotshop/terminal-sdk-java/issues/123)) ([84a8ff4](https://github.com/terminaldotshop/terminal-sdk-java/commit/84a8ff48720662844375bc67225303cfa5965622))
25+
* revise readme docs about nested params ([#122](https://github.com/terminaldotshop/terminal-sdk-java/issues/122)) ([40cf55b](https://github.com/terminaldotshop/terminal-sdk-java/commit/40cf55be598287e72f89588840c7db25c6320ea8))
26+
327
## 1.0.0 (2025-03-08)
428

529
Full Changelog: [v0.1.0-alpha.8...v1.0.0](https://github.com/terminaldotshop/terminal-sdk-java/compare/v0.1.0-alpha.8...v1.0.0)

README.md

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

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

5-
[![Maven Central](https://img.shields.io/maven-central/v/shop.terminal.api/terminal-java)](https://central.sonatype.com/artifact/shop.terminal.api/terminal-java/1.0.0)
6-
[![javadoc](https://javadoc.io/badge2/shop.terminal.api/terminal-java/1.0.0/javadoc.svg)](https://javadoc.io/doc/shop.terminal.api/terminal-java/1.0.0)
5+
[![Maven Central](https://img.shields.io/maven-central/v/shop.terminal.api/terminal-java)](https://central.sonatype.com/artifact/shop.terminal.api/terminal-java/1.1.0)
6+
[![javadoc](https://javadoc.io/badge2/shop.terminal.api/terminal-java/1.1.0/javadoc.svg)](https://javadoc.io/doc/shop.terminal.api/terminal-java/1.1.0)
77

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

@@ -22,7 +22,7 @@ The REST API documentation can be found on [terminal.shop](https://terminal.shop
2222
### Gradle
2323

2424
```kotlin
25-
implementation("shop.terminal.api:terminal-java:1.0.0")
25+
implementation("shop.terminal.api:terminal-java:1.1.0")
2626
```
2727

2828
### Maven
@@ -31,7 +31,7 @@ implementation("shop.terminal.api:terminal-java:1.0.0")
3131
<dependency>
3232
<groupId>shop.terminal.api</groupId>
3333
<artifactId>terminal-java</artifactId>
34-
<version>1.0.0</version>
34+
<version>1.1.0</version>
3535
</dependency>
3636
```
3737

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
allprojects {
1010
group = "shop.terminal.api"
11-
version = "1.0.0" // x-release-please-version
11+
version = "1.1.0" // x-release-please-version
1212
}
1313

1414
subprojects {

0 commit comments

Comments
 (0)