Skip to content

Commit 2c5b8a1

Browse files
committed
feat: revert package downgrade
1 parent 16cddff commit 2c5b8a1

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ It can be used with the following:
8282
* Gradle (Groovy)
8383

8484
```groovy
85-
implementation 'dev.openfga:openfga-sdk:0.9.2'
85+
implementation 'dev.openfga:openfga-sdk:0.9.3'
8686
```
8787

8888
* Gradle (Kotlin)
8989

9090
```kotlin
91-
implementation("dev.openfga:openfga-sdk:0.9.2")
91+
implementation("dev.openfga:openfga-sdk:0.9.3")
9292
```
9393

9494
* Apache Maven
@@ -97,26 +97,26 @@ implementation("dev.openfga:openfga-sdk:0.9.2")
9797
<dependency>
9898
<groupId>dev.openfga</groupId>
9999
<artifactId>openfga-sdk</artifactId>
100-
<version>0.9.2</version>
100+
<version>0.9.3</version>
101101
</dependency>
102102
```
103103

104104
* Ivy
105105

106106
```xml
107-
<dependency org="dev.openfga" name="openfga-sdk" rev="0.9.2"/>
107+
<dependency org="dev.openfga" name="openfga-sdk" rev="0.9.3"/>
108108
```
109109

110110
* SBT
111111

112112
```scala
113-
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.9.2"
113+
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.9.3"
114114
```
115115

116116
* Leiningen
117117

118118
```edn
119-
[dev.openfga/openfga-sdk "0.9.2"]
119+
[dev.openfga/openfga-sdk "0.9.3"]
120120
```
121121

122122

src/main/java/dev/openfga/sdk/constants/FgaConstants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
public final class FgaConstants {
2020

2121
/** Version of the OpenFGA Java SDK. */
22-
public static final String SDK_VERSION = "0.9.2";
22+
public static final String SDK_VERSION = "0.9.3";
2323

2424
/** User agent used in HTTP requests. */
25-
public static final String USER_AGENT = "openfga-sdk java/0.9.2";
25+
public static final String USER_AGENT = "openfga-sdk java/0.9.3";
2626

2727
/** Example API domain for documentation/tests. */
2828
public static final String SAMPLE_BASE_DOMAIN = "fga.example";

0 commit comments

Comments
 (0)