Skip to content

Commit d84e4f8

Browse files
authored
3.1.0 (#654)
1 parent 50f6cb7 commit d84e4f8

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ 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.1.0]
810

911
### Added
1012

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

2628
### Changed
2729

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

3033
#### Shared
@@ -959,3 +962,4 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress
959962
[3.0.1]: https://github.com/readium/kotlin-toolkit/compare/3.0.0...3.0.1
960963
[3.0.2]: https://github.com/readium/kotlin-toolkit/compare/3.0.1...3.0.2
961964
[3.0.3]: https://github.com/readium/kotlin-toolkit/compare/3.0.2...3.0.3
965+
[3.1.0]: https://github.com/readium/kotlin-toolkit/compare/3.0.3...3.1.0

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ Guides are available to help you make the most of the toolkit.
8686
| Readium | Android min SDK | Android compile SDK | Kotlin compiler (✻) | Gradle (✻) |
8787
|-----------|-----------------|---------------------|---------------------|------------|
8888
| `develop` | 21 | 35 | 2.1.20 | 8.13 |
89+
| 3.1.0 | 21 | 35 | 2.1.20 | 8.13 |
8990
| 3.0.0 | 21 | 34 | 1.9.24 | 8.6.0 |
9091
| 2.3.0 | 21 | 33 | 1.7.10 | 6.9.3 |
9192

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

9899
```groovy
99100
buildscript {
100-
ext.readium_version = '3.0.3'
101+
ext.readium_version = '3.1.0'
101102
}
102103
103104
allprojects {

gradle.properties

Lines changed: 1 addition & 1 deletion
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.3
9+
pom.version=3.1.0
1010

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

settings.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ include(":readium:navigators:common")
4545
project(":readium:navigators:common")
4646
.name = "readium-navigator-common"
4747

48-
include(":readium:navigators:web")
49-
project(":readium:navigators:web")
50-
.name = "readium-navigator-web"
48+
// include(":readium:navigators:web")
49+
// project(":readium:navigators:web")
50+
// .name = "readium-navigator-web"
5151

5252
include(":readium:navigators:media:common")
5353
project(":readium:navigators:media:common")

test-app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ android {
2020

2121
applicationId = "org.readium.r2reader"
2222

23-
versionName = "3.0.3"
23+
versionName = "3.1.0"
2424
versionCode = 1
2525

2626
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

0 commit comments

Comments
 (0)