Skip to content

Commit

Permalink
3.0.1 (#583)
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-menu authored Oct 31, 2024
1 parent 94ba891 commit 885d6e5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
<!-- ## [Unreleased] -->

## [3.0.1]

### Fixed

#### Shared

* Improved performance when accessing a publication from the Shared Storage.

#### Navigator

* Fixed crash in the image navigator.
Expand Down Expand Up @@ -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

4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions test-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 885d6e5

Please sign in to comment.