Skip to content

Commit 885d6e5

Browse files
authored
3.0.1 (#583)
1 parent 94ba891 commit 885d6e5

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

Diff for: CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@ All notable changes to this project will be documented in this file. Take a look
44

55
**Warning:** Features marked as *experimental* may change or be removed in a future release without notice. Use with caution.
66

7-
## [Unreleased]
7+
<!-- ## [Unreleased] -->
8+
9+
## [3.0.1]
810

911
### Fixed
1012

13+
#### Shared
14+
15+
* Improved performance when accessing a publication from the Shared Storage.
16+
1117
#### Navigator
1218

1319
* Fixed crash in the image navigator.
@@ -895,4 +901,5 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress
895901
[3.0.0-beta.1]: https://github.com/readium/kotlin-toolkit/compare/3.0.0-alpha.2...3.0.0-beta.1
896902
[3.0.0-beta.2]: https://github.com/readium/kotlin-toolkit/compare/3.0.0-beta.1...3.0.0-beta.2
897903
[3.0.0]: https://github.com/readium/kotlin-toolkit/compare/3.0.0-beta.2...3.0.0
904+
[3.0.1]: https://github.com/readium/kotlin-toolkit/compare/3.0.0...3.0.1
898905

Diff for: README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Readium modules are distributed with [Maven Central](https://search.maven.org/se
2121

2222
```groovy
2323
buildscript {
24-
ext.readium_version = '3.0.0'
24+
ext.readium_version = '3.0.1'
2525
}
2626
2727
allprojects {
@@ -43,6 +43,8 @@ dependencies {
4343
}
4444
```
4545

46+
: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.
47+
4648
### Using a local Git clone
4749

4850
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 for: gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# http://www.gradle.org/docs/current/userguide/build_environment.html
77

88
pom.groupId=org.readium.kotlin-toolkit
9-
pom.version=3.0.0
9+
pom.version=3.0.1
1010

1111
android.minSdk=21
1212
android.compileSdk=34

Diff for: test-app/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ android {
1919

2020
applicationId = "org.readium.r2reader"
2121

22-
versionName = "3.0.0"
23-
versionCode = 300000
22+
versionName = "3.0.1"
23+
versionCode = 300001
2424

2525
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2626
ndk.abiFilters.add("armeabi-v7a")

0 commit comments

Comments
 (0)