Skip to content

3.1.0 #654

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 1, 2025
Merged

3.1.0 #654

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ 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.1.0]

### Added

Expand All @@ -25,6 +27,7 @@ All notable changes to this project will be documented in this file. Take a look

### Changed

* Upgraded to Kotlin 2.1.20 and Gradle 8.13.
* Jetifier is not required anymore, you can remove `android.enableJetifier=true` from your `gradle.properties` if you were using Readium as a local clone.

#### Shared
Expand Down Expand Up @@ -959,3 +962,4 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress
[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
[3.1.0]: https://github.com/readium/kotlin-toolkit/compare/3.0.3...3.1.0
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ Guides are available to help you make the most of the toolkit.
| Readium | Android min SDK | Android compile SDK | Kotlin compiler (✻) | Gradle (✻) |
|-----------|-----------------|---------------------|---------------------|------------|
| `develop` | 21 | 35 | 2.1.20 | 8.13 |
| 3.1.0 | 21 | 35 | 2.1.20 | 8.13 |
| 3.0.0 | 21 | 34 | 1.9.24 | 8.6.0 |
| 2.3.0 | 21 | 33 | 1.7.10 | 6.9.3 |

Expand All @@ -97,7 +98,7 @@ Readium modules are distributed with [Maven Central](https://search.maven.org/se

```groovy
buildscript {
ext.readium_version = '3.0.3'
ext.readium_version = '3.1.0'
}

allprojects {
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.3
pom.version=3.1.0

android.minSdk=21
android.compileSdk=35
Expand Down
6 changes: 3 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ include(":readium:navigators:common")
project(":readium:navigators:common")
.name = "readium-navigator-common"

include(":readium:navigators:web")
project(":readium:navigators:web")
.name = "readium-navigator-web"
// include(":readium:navigators:web")
// project(":readium:navigators:web")
// .name = "readium-navigator-web"

include(":readium:navigators:media:common")
project(":readium:navigators:media:common")
Expand Down
2 changes: 1 addition & 1 deletion test-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {

applicationId = "org.readium.r2reader"

versionName = "3.0.3"
versionName = "3.1.0"
versionCode = 1

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down