Skip to content

Commit 4cd74ca

Browse files
authored
Prepare 1.1.0 release. (#278)
1 parent cbc4d55 commit 4cd74ca

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 1.1.0
2+
3+
### Feature
4+
- [#276](https://github.com/okta/okta-oidc-android/pull/276) Adds support for parallel refresh token requests.
5+
- [#277](https://github.com/okta/okta-oidc-android/pull/277) Run SessionClient requests in serial.
6+
7+
### Bug Fix
8+
- [#272](https://github.com/okta/okta-oidc-android/pull/272) Make `OktaAuthenticationActivity` `launchMode` `singleTop` which fixes an issue where the browser tab would remain in the Android recents list.
9+
110
# 1.0.20
211

312
### Bug Fix

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ It is recommended that your app extends [FragmentActivity][fragment-activity] or
5959
Add the `Okta OIDC` dependency to your `build.gradle` file:
6060

6161
```gradle
62-
implementation 'com.okta.android:okta-oidc-android:1.0.20'
62+
implementation 'com.okta.android:okta-oidc-android:1.1.0'
6363
```
6464

6565
The SDK requires Java 8 support.
@@ -371,7 +371,7 @@ dependencies {
371371
...
372372
...
373373
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.10'
374-
implementation 'com.okta.android:okta-oidc-android:1.0.20'
374+
implementation 'com.okta.android:okta-oidc-android:1.1.0'
375375
implementation 'com.okta.authn.sdk:okta-authn-sdk-api:2.0.0'
376376
implementation('com.okta.authn.sdk:okta-authn-sdk-impl:2.0.0') {
377377
exclude group: 'com.okta.sdk', module: 'okta-sdk-httpclient'

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ subprojects {
3535

3636
ext {
3737
versionNum = 19
38-
versionName = "1.0.20"
38+
versionName = "1.1.0"
3939
versionDate = new Date()
4040
minSdkVersion = 21
4141
compileSdkVersion = 30

0 commit comments

Comments
 (0)