Skip to content

Commit

Permalink
update Changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lbalmaceda committed Feb 11, 2021
1 parent 7c38e00 commit 02bda7b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,36 @@
# Change Log

## [2.0.0](https://github.com/auth0/Auth0.Android/tree/2.0.0) (2021-02-10)

**This is a major release and contains breaking changes!**

Please see the [migration guide](V2_MIGRATION_GUIDE.md) document. The full changelog from version 1 to version 2 is [here](https://github.com/auth0/Auth0.Android/compare/1.30.0...2.0.0).

### New requirements
v2 requires Android API version 21 or later and Java 8+. Update your `build.gradle` file with the following:

```groovy
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
```

### Main features
- Supports exclusively the **OpenID Connect** authentication pipeline from Auth0.
- Uses **AndroidX** dependencies, and drops the use of the Jetifier plugin.
- Reworked networking stack. Offers a **customizable Networking Client**.

See the changelog entries below for additional details.

What follows is the summary of changes made from `2.0.0-beta.0`.

[Full Changelog](https://github.com/auth0/Auth0.Android/compare/2.0.0-beta.0...2.0.0)

**Changed**
Expand Down

0 comments on commit 02bda7b

Please sign in to comment.