Skip to content

Commit 8162be6

Browse files
authored
Merge pull request #134 from openfga/release/0.7.2
release: v0.7.2
2 parents 5bfd685 + 8b31932 commit 8162be6

File tree

7 files changed

+18
-12
lines changed

7 files changed

+18
-12
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.7.2
4+
5+
### [0.7.2](https://github.com/openfga/java-sdk/compare/v0.7.1...v0.7.2) (2024-12-18)
6+
7+
- fix: Ensure executor is shutdown (#133)
8+
39
## v0.7.1
410

511
### [0.7.1](https://github.com/openfga/java-sdk/compare/v0.7.0...v0.7.1) (2024-09-23)

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ It can be used with the following:
7979
* Gradle (Groovy)
8080

8181
```groovy
82-
implementation 'dev.openfga:openfga-sdk:0.7.1'
82+
implementation 'dev.openfga:openfga-sdk:0.7.2'
8383
```
8484

8585
* Gradle (Kotlin)
8686

8787
```kotlin
88-
implementation("dev.openfga:openfga-sdk:0.7.1")
88+
implementation("dev.openfga:openfga-sdk:0.7.2")
8989
```
9090

9191
* Apache Maven
@@ -94,26 +94,26 @@ implementation("dev.openfga:openfga-sdk:0.7.1")
9494
<dependency>
9595
<groupId>dev.openfga</groupId>
9696
<artifactId>openfga-sdk</artifactId>
97-
<version>0.7.1</version>
97+
<version>0.7.2</version>
9898
</dependency>
9999
```
100100

101101
* Ivy
102102

103103
```xml
104-
<dependency org="dev.openfga" name="openfga-sdk" rev="0.7.1"/>
104+
<dependency org="dev.openfga" name="openfga-sdk" rev="0.7.2"/>
105105
```
106106

107107
* SBT
108108

109109
```scala
110-
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.7.1"
110+
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.7.2"
111111
```
112112

113113
* Leiningen
114114

115115
```edn
116-
[dev.openfga/openfga-sdk "0.7.1"]
116+
[dev.openfga/openfga-sdk "0.7.2"]
117117
```
118118

119119

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919
apply from: 'publish.gradle'
2020

2121
group = 'dev.openfga'
22-
version = '0.7.1'
22+
version = '0.7.2'
2323

2424
repositories {
2525
mavenCentral()

example/example1/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ext {
2323
}
2424

2525
dependencies {
26-
implementation("dev.openfga:openfga-sdk:0.7.1")
26+
implementation("dev.openfga:openfga-sdk:0.7.2")
2727

2828
// Serialization
2929
implementation("com.fasterxml.jackson.core:jackson-core:$jacksonVersion")

publish.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publishing {
66
pom {
77
group = 'dev.openfga'
88
name = 'openfga-sdk'
9-
version = '0.7.1'
9+
version = '0.7.2'
1010
description = 'This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the [OpenFGA API definition](https://openfga.dev/api).'
1111
url = 'https://openfga.dev'
1212
licenses {

src/main/java/dev/openfga/sdk/api/configuration/Configuration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
* Configurations for an api client.
3131
*/
3232
public class Configuration implements BaseConfiguration {
33-
public static final String VERSION = "0.7.1";
33+
public static final String VERSION = "0.7.2";
3434

3535
private static final String DEFAULT_API_URL = "http://localhost:8080";
36-
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.7.1";
36+
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.7.2";
3737
private static final Duration DEFAULT_READ_TIMEOUT = Duration.ofSeconds(10);
3838
private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration.ofSeconds(10);
3939

src/test/java/dev/openfga/sdk/api/configuration/ConfigurationTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
class ConfigurationTest {
2424
private static final String DEFAULT_API_URL = "http://localhost:8080";
25-
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.7.1";
25+
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.7.2";
2626
private static final Duration DEFAULT_READ_TIMEOUT = Duration.ofSeconds(10);
2727
private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration.ofSeconds(10);
2828
private static final Map<String, String> DEFAULT_HEADERS = Map.of();

0 commit comments

Comments
 (0)