diff --git a/CHANGELOG.md b/CHANGELOG.md index 371f5a73bf..ac4cfbada2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,16 @@ All notable changes to this project will be documented in this file. Take a look **Warning:** Features marked as *experimental* may change or be removed in a future release without notice. Use with caution. -## [Unreleased] + + +## [3.0.1] ### Fixed +#### Shared + +* Improved performance when accessing a publication from the Shared Storage. + #### Navigator * Fixed crash in the image navigator. @@ -895,4 +901,5 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress [3.0.0-beta.1]: https://github.com/readium/kotlin-toolkit/compare/3.0.0-alpha.2...3.0.0-beta.1 [3.0.0-beta.2]: https://github.com/readium/kotlin-toolkit/compare/3.0.0-beta.1...3.0.0-beta.2 [3.0.0]: https://github.com/readium/kotlin-toolkit/compare/3.0.0-beta.2...3.0.0 +[3.0.1]: https://github.com/readium/kotlin-toolkit/compare/3.0.0...3.0.1 diff --git a/README.md b/README.md index 10663ca82d..3ea49e73fa 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Readium modules are distributed with [Maven Central](https://search.maven.org/se ```groovy buildscript { - ext.readium_version = '3.0.0' + ext.readium_version = '3.0.1' } allprojects { @@ -43,6 +43,8 @@ dependencies { } ``` +:warning: If you target Android devices running below API 26, you must enable [core library desugaring](https://developer.android.com/studio/write/java8-support#library-desugaring) in your application module. + ### Using a local Git clone You may prefer to use a local Git clone if you want to contribute to Readium, or if you are using your own fork. diff --git a/gradle.properties b/gradle.properties index 87d64aadb5..5c5f543ab7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ # http://www.gradle.org/docs/current/userguide/build_environment.html pom.groupId=org.readium.kotlin-toolkit -pom.version=3.0.0 +pom.version=3.0.1 android.minSdk=21 android.compileSdk=34 diff --git a/test-app/build.gradle.kts b/test-app/build.gradle.kts index 4e4186121b..826674c651 100644 --- a/test-app/build.gradle.kts +++ b/test-app/build.gradle.kts @@ -19,8 +19,8 @@ android { applicationId = "org.readium.r2reader" - versionName = "3.0.0" - versionCode = 300000 + versionName = "3.0.1" + versionCode = 300001 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" ndk.abiFilters.add("armeabi-v7a")