diff --git a/CHANGELOG.md b/CHANGELOG.md index 3126e13aaf..560efd17f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ All notable changes to this project will be documented in this file. Take a look +## [3.0.3] + +### Fixed + +* Fixed `IllegalArgumentException` when trying to decrypt the end of a `CbcLcpResource`. + + +#### LCP + ## [3.0.2] ### Fixed @@ -916,4 +925,4 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress [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 [3.0.2]: https://github.com/readium/kotlin-toolkit/compare/3.0.1...3.0.2 - +[3.0.3]: https://github.com/readium/kotlin-toolkit/compare/3.0.2...3.0.3 diff --git a/README.md b/README.md index 78dccb6223..417bee3e6e 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.2' + ext.readium_version = '3.0.3' } allprojects { diff --git a/gradle.properties b/gradle.properties index 2c71366c7c..c34757a269 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.2 +pom.version=3.0.3 android.minSdk=21 android.compileSdk=34 diff --git a/test-app/build.gradle.kts b/test-app/build.gradle.kts index d0ea588f85..c674aab682 100644 --- a/test-app/build.gradle.kts +++ b/test-app/build.gradle.kts @@ -19,7 +19,7 @@ android { applicationId = "org.readium.r2reader" - versionName = "3.0.2" + versionName = "3.0.3" versionCode = 1 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"