From 011e0d74adc66ec2073f746d815310b838af4fbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Menu?= Date: Tue, 7 Nov 2023 14:36:57 +0100 Subject: [PATCH] 2.4.0 (#419) --- CHANGELOG.md | 8 +++++++- README.md | 2 +- docs/migration-guide.md | 4 +++- jitpack.yml | 3 --- mkdocs.yml | 1 - test-app/build.gradle.kts | 2 +- 6 files changed, 12 insertions(+), 8 deletions(-) delete mode 100644 jitpack.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index e7ca63fe7c..1b8faa114d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ 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] + + +## [2.4.0] + +* Readium is now distributed with [Maven Central](https://search.maven.org/search?q=g:org.readium.kotlin-toolkit). Take a look at [the migration guide](docs/migration-guide.md#240) to update your Gradle configuration. ### Added @@ -59,6 +63,7 @@ All notable changes to this project will be documented in this file. Take a look * Fixed issue with the TTS starting from the beginning of the chapter instead of the current position. + ## [2.3.0] ### Added @@ -692,4 +697,5 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress [2.2.0]: https://github.com/readium/kotlin-toolkit/compare/2.1.1...2.2.0 [2.2.1]: https://github.com/readium/kotlin-toolkit/compare/2.2.0...2.2.1 [2.3.0]: https://github.com/readium/kotlin-toolkit/compare/2.2.1...2.3.0 +[2.4.0]: https://github.com/readium/kotlin-toolkit/compare/2.3.0...2.4.0 diff --git a/README.md b/README.md index 6a8195a0a3..4a8acdfea4 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Readium modules are distributed with [Maven Central](https://search.maven.org/se ```groovy buildscript { - ext.readium_version = '2.3.0' + ext.readium_version = '2.4.0' } allprojects { diff --git a/docs/migration-guide.md b/docs/migration-guide.md index c8992f56be..5522689c2b 100644 --- a/docs/migration-guide.md +++ b/docs/migration-guide.md @@ -2,7 +2,9 @@ All migration steps necessary in reading apps to upgrade to major versions of the Kotlin Readium toolkit will be documented in this file. -## Unreleased + + +## 2.4.0 ### Maven Central diff --git a/jitpack.yml b/jitpack.yml deleted file mode 100644 index 9341488d21..0000000000 --- a/jitpack.yml +++ /dev/null @@ -1,3 +0,0 @@ -jdk: - - openjdk11 - diff --git a/mkdocs.yml b/mkdocs.yml index 5de1a594b2..a58d3b7512 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -57,7 +57,6 @@ nav: - OPDS: readium/opds/index.md - LCP: readium/lcp/index.md - Adapters: - - Navigator media2: readium/navigator-media2/index.md - PDFium Document: readium/adapters/pdfium/pdfium-document/index.md - PDFium Navigator: readium/adapters/pdfium/pdfium-navigator/index.md - PSPDFKit Document: readium/adapters/pspdfkit/pspdfkit-document/index.md diff --git a/test-app/build.gradle.kts b/test-app/build.gradle.kts index 6fb8969723..ede0e9659b 100644 --- a/test-app/build.gradle.kts +++ b/test-app/build.gradle.kts @@ -19,7 +19,7 @@ android { applicationId = "org.readium.r2reader" - versionName = "2.3.0" + versionName = "2.4.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" ndk.abiFilters.add("armeabi-v7a")