Skip to content

Commit

Permalink
Merge pull request #606 from readium/merge-main
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-menu authored Jan 9, 2025
2 parents a6eacfd + c9e7628 commit 211070a
Show file tree
Hide file tree
Showing 10 changed files with 396 additions and 206 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ All notable changes to this project will be documented in this file. Take a look

<!-- ## [Unreleased] -->

## [3.0.3]

### Fixed

#### LCP

* Fixed `IllegalArgumentException` when trying to decrypt the end of a `CbcLcpResource`.


## [3.0.2]

### Fixed
Expand Down Expand Up @@ -916,4 +925,4 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress
[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
[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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Readium modules are distributed with [Maven Central](https://search.maven.org/se

```groovy
buildscript {
ext.readium_version = '3.0.2'
ext.readium_version = '3.0.3'
}
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.2
pom.version=3.0.3

android.minSdk=21
android.compileSdk=35
Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ picasso = "2.8"
pspdfkit = "8.4.1"

robolectric = "4.13"
mockk = "1.13.14"

timber = "5.0.1"

Expand Down Expand Up @@ -123,6 +124,7 @@ picasso = { group = "com.squareup.picasso", name = "picasso", version.ref = "pic
pspdfkit = { group = "com.pspdfkit", name = "pspdfkit", version.ref ="pspdfkit" }

robolectric = { group = "org.robolectric", name = "robolectric", version.ref = "robolectric" }
mockk = { group = "io.mockk", name = "mockk", version.ref = "mockk"}

timber = { group = "com.jakewharton.timber", name = "timber", version.ref = "timber" }

Expand Down
3 changes: 3 additions & 0 deletions readium/lcp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,7 @@ dependencies {
// Tests
testImplementation(libs.junit)
testImplementation(libs.kotlin.junit)
testImplementation(libs.mockk)
testImplementation(libs.kotlinx.coroutines.test)
testImplementation(libs.robolectric)
}
Loading

0 comments on commit 211070a

Please sign in to comment.