Skip to content

Commit

Permalink
version 10.0.02
Browse files Browse the repository at this point in the history
  • Loading branch information
Sudhanshu Agarwal committed Apr 30, 2020
1 parent 5f7294a commit aedc0c2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
> **LoginRadius Java SDK Change Log** provides information regarding what has changed, more specifically what changes, improvements and bug fix has been made to the SDK. For more details please refer to the [LoginRadius API Documention(https://www.loginradius.com/docs/api/v2/deployment/sdk-libraries/java-library/)
### Version 10.0.2
Release on **April 27,2020**

##### Bug Fixes

- Fixed Access Token caching issue.

### Version 10.0.0
Release on **September 30,2019**

Expand Down
2 changes: 1 addition & 1 deletion LoginRadius-JavaSDK/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.loginradius.sdk</groupId>
<artifactId>java-sdk</artifactId>
<version>10.0.0</version>
<version>10.0.2</version>
<description>LoginRadius java SDK contains registration and social APIs</description>
<url>https://github.com/LoginRadius/java-sdk</url>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ private static String LoginRadiusRequestRunner(String method, String url, String
}
if (!authorization.equals("")) {
con.setRequestProperty("Authorization", "Bearer " + authorization);
authorization = "";
}
if (!apiSecret.equals("") && LoginRadiusSDK.getRequestSigning()) {
String time = getTime();
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Use the following dependency in your project:
<dependency>
<groupId>com.loginradius.sdk</groupId>
<artifactId>java-sdk</artifactId>
<version>10.0.0</version>
<version>10.0.2</version>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<dependency>
<groupId>com.loginradius.sdk</groupId>
<artifactId>java-sdk</artifactId>
<version>10.0.0</version>
<version>10.0.2</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit aedc0c2

Please sign in to comment.