Skip to content

Commit

Permalink
chore: Bump version to 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
booniepepper committed Sep 27, 2023
1 parent 4bc66da commit 739f568
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v0.0.5

### [0.0.5](https://github.com/openfga/java-sdk/compare/v0.0.4...v0.0.5) (2023-09-27)

- feat: introduced higher level OpenFgaClient class
- docs: updated the README with usage instructions

## v0.0.3, v0.0.4

### [0.0.4](https://github.com/openfga/java-sdk/compare/v0.0.2...v0.0.4) (2023-09-21)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ It can be used with the following:
* Gradle (Groovy)

```groovy
implementation 'dev.openfga:openfga-sdk:0.0.4'
implementation 'dev.openfga:openfga-sdk:0.0.5'
```

* Gradle (Kotlin)

```kotlin
implementation("dev.openfga:openfga-sdk:0.0.4")
implementation("dev.openfga:openfga-sdk:0.0.5")
```

* Apache Maven
Expand All @@ -89,26 +89,26 @@ implementation("dev.openfga:openfga-sdk:0.0.4")
<dependency>
<groupId>dev.openfga</groupId>
<artifactId>openfga-sdk</artifactId>
<version>0.0.4</version>
<version>0.0.5</version>
</dependency>
```

* Ivy

```xml
<dependency org="dev.openfga" name="openfga-sdk" rev="0.0.4"/>
<dependency org="dev.openfga" name="openfga-sdk" rev="0.0.5"/>
```

* SBT

```scala
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.0.4"
libraryDependencies += "dev.openfga" % "openfga-sdk" % "0.0.5"
```

* Leiningen

```edn
[dev.openfga/openfga-sdk "0.0.4"]
[dev.openfga/openfga-sdk "0.0.5"]
```


Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
apply from: 'publish.gradle'

group = 'dev.openfga'
version = '0.0.4'
version = '0.0.5'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publishing {
pom {
group = 'dev.openfga'
name = 'openfga-sdk'
version = '0.0.4'
version = '0.0.5'
description = 'This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the [OpenFGA API definition](https://openfga.dev/api).'
url = 'https://openfga.dev'
licenses {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
* Configurations for an api client.
*/
public class Configuration implements BaseConfiguration {
public static final String VERSION = "0.0.4";
public static final String VERSION = "0.0.5";

private static final String DEFAULT_API_URL = "http://localhost:8080";
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.0.4";
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.0.5";
private static final Duration DEFAULT_READ_TIMEOUT = Duration.ofSeconds(10);
private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration.ofSeconds(10);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

class ConfigurationTest {
private static final String DEFAULT_API_URL = "http://localhost:8080";
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.0.4";
private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.0.5";
private static final Duration DEFAULT_READ_TIMEOUT = Duration.ofSeconds(10);
private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration.ofSeconds(10);

Expand Down

0 comments on commit 739f568

Please sign in to comment.