File tree Expand file tree Collapse file tree
main/java/dev/openfga/sdk/api/configuration
test/java/dev/openfga/sdk/api/configuration Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3- ## v0.0.3
3+ ## v0.0.3, v0.0.4
44
5- ### [ 0.0.3 ] ( https://github.com/openfga/java-sdk/compare/v0.0.2...v0.0.3 ) (2023-09-19 )
5+ ### [ 0.0.4 ] ( https://github.com/openfga/java-sdk/compare/v0.0.2...v0.0.4 ) (2023-09-21 )
66
77- fix: publishing to maven central
88
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ plugins {
1717apply from : ' publish.gradle'
1818
1919group = ' dev.openfga'
20- version = ' 0.0.3 '
20+ version = ' 0.0.4 '
2121
2222repositories {
2323 mavenCentral()
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ publishing {
66 pom {
77 group = ' dev.openfga'
88 name = ' openfga-sdk'
9- version = ' 0.0.3 '
9+ version = ' 0.0.4 '
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 {
@@ -32,7 +32,7 @@ publishing {
3232 repositories {
3333 maven {
3434 name = ' SonatypeOSSRH' // AKA: "Maven Central"
35- url = ' https://s01.oss.sonatype.org/content/repositories/snapshots /'
35+ url = ' https://s01.oss.sonatype.org/service/local/staging/deploy/maven2 /'
3636 credentials {
3737 username = System . getenv(' MAVEN_USERNAME' )
3838 password = System . getenv(' MAVEN_PASSWORD' )
Original file line number Diff line number Diff line change 2727 * Configurations for an api client.
2828 */
2929public class Configuration implements BaseConfiguration {
30- public static final String VERSION = "0.0.3 " ;
30+ public static final String VERSION = "0.0.4 " ;
3131
3232 private static final String DEFAULT_API_URL = "http://localhost:8080" ;
33- private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.0.3 " ;
33+ private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.0.4 " ;
3434 private static final Duration DEFAULT_READ_TIMEOUT = Duration .ofSeconds (10 );
3535 private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration .ofSeconds (10 );
3636
Original file line number Diff line number Diff line change 2020
2121class ConfigurationTest {
2222 private static final String DEFAULT_API_URL = "http://localhost:8080" ;
23- private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.0.3 " ;
23+ private static final String DEFAULT_USER_AGENT = "openfga-sdk java/0.0.4 " ;
2424 private static final Duration DEFAULT_READ_TIMEOUT = Duration .ofSeconds (10 );
2525 private static final Duration DEFAULT_CONNECT_TIMEOUT = Duration .ofSeconds (10 );
2626
You can’t perform that action at this time.
0 commit comments