Skip to content

Commit 211070a

Browse files
authored
Merge pull request #606 from readium/merge-main
2 parents a6eacfd + c9e7628 commit 211070a

File tree

10 files changed

+396
-206
lines changed

10 files changed

+396
-206
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ All notable changes to this project will be documented in this file. Take a look
66

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

9+
## [3.0.3]
10+
11+
### Fixed
12+
13+
#### LCP
14+
15+
* Fixed `IllegalArgumentException` when trying to decrypt the end of a `CbcLcpResource`.
16+
17+
918
## [3.0.2]
1019

1120
### Fixed
@@ -916,4 +925,4 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress
916925
[3.0.0]: https://github.com/readium/kotlin-toolkit/compare/3.0.0-beta.2...3.0.0
917926
[3.0.1]: https://github.com/readium/kotlin-toolkit/compare/3.0.0...3.0.1
918927
[3.0.2]: https://github.com/readium/kotlin-toolkit/compare/3.0.1...3.0.2
919-
928+
[3.0.3]: https://github.com/readium/kotlin-toolkit/compare/3.0.2...3.0.3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Readium modules are distributed with [Maven Central](https://search.maven.org/se
2222

2323
```groovy
2424
buildscript {
25-
ext.readium_version = '3.0.2'
25+
ext.readium_version = '3.0.3'
2626
}
2727
2828
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.2
9+
pom.version=3.0.3
1010

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

gradle/libs.versions.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ picasso = "2.8"
6161
pspdfkit = "8.4.1"
6262

6363
robolectric = "4.13"
64+
mockk = "1.13.14"
6465

6566
timber = "5.0.1"
6667

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

125126
robolectric = { group = "org.robolectric", name = "robolectric", version.ref = "robolectric" }
127+
mockk = { group = "io.mockk", name = "mockk", version.ref = "mockk"}
126128

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

readium/lcp/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,7 @@ dependencies {
3939
// Tests
4040
testImplementation(libs.junit)
4141
testImplementation(libs.kotlin.junit)
42+
testImplementation(libs.mockk)
43+
testImplementation(libs.kotlinx.coroutines.test)
44+
testImplementation(libs.robolectric)
4245
}

0 commit comments

Comments
 (0)