Skip to content

Commit cc97a1f

Browse files
authored
2.1.0 (#60)
1 parent 27c5601 commit cc97a1f

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

readium/opds/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,17 @@ All notable changes to this project will be documented in this file.
44

55
**Warning:** Features marked as *alpha* may change or be removed in a future release without notice. Use with caution.
66

7-
## [Unreleased]
7+
<!--## [Unreleased]-->
8+
9+
## [2.1.0]
810

911
### Added
1012

1113
* New APIs using coroutines and R2's `HttpClient` instead of Fuel and kovenant (contributed by [@stevenzeck](https://github.com/readium/r2-opds-kotlin/pull/55)).
1214

1315
### Changed
1416

15-
* Upgraded to Kotlin 1.5.21 and Gradle 7.1.1
17+
* Upgraded to Kotlin 1.5.31 and Gradle 7.1.1
1618

1719
### Fixed
1820

@@ -65,4 +67,5 @@ All notable changes to this project will be documented in this file.
6567
[2.0.0-beta.1]: https://github.com/readium/r2-opds-kotlin/compare/2.0.0-alpha.2...2.0.0-beta.1
6668
[2.0.0-beta.2]: https://github.com/readium/r2-opds-kotlin/compare/2.0.0-beta.1...2.0.0-beta.2
6769
[2.0.0]: https://github.com/readium/r2-opds-kotlin/compare/2.0.0-beta.2...2.0.0
70+
[2.1.0]: https://github.com/readium/r2-opds-kotlin/compare/2.0.0...2.1.0
6871

readium/opds/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.5.21'
4+
ext.kotlin_version = '1.5.31'
55

66
repositories {
77
google()
88
jcenter()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:7.0.0'
11+
classpath 'com.android.tools.build:gradle:7.0.2'
1212

1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414

readium/opds/r2-opds/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ plugins {
1414
group='com.github.readium'
1515

1616
android {
17-
compileSdkVersion 30
17+
compileSdkVersion 31
1818
defaultConfig {
1919
minSdkVersion 21
20-
targetSdkVersion 30
20+
targetSdkVersion 31
2121
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2222
}
2323
compileOptions {
@@ -51,23 +51,23 @@ dependencies {
5151
if (findProject(':r2-shared')) {
5252
implementation project(':r2-shared')
5353
} else {
54-
implementation "com.github.readium:r2-shared-kotlin:develop-SNAPSHOT"
54+
implementation "com.github.readium:r2-shared-kotlin:2.1.0"
5555
}
5656

5757
implementation 'androidx.appcompat:appcompat:1.3.1'
5858
implementation "com.jakewharton.timber:timber:4.7.1"
5959
implementation "joda-time:joda-time:2.10.10"
6060
implementation "nl.komponents.kovenant:kovenant:3.3.0"
61-
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0-native-mt"
61+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0"
6262

6363
testImplementation 'androidx.test.ext:junit-ktx:1.1.3'
6464
testImplementation 'androidx.test:core-ktx:1.4.0'
6565
testImplementation "junit:junit:4.13.2"
6666
testImplementation "net.sf.kxml:kxml2:2.3.0"
6767
testImplementation 'org.assertj:assertj-core:3.19.0'
68-
testImplementation "org.jetbrains.kotlin:kotlin-reflect:1.5.20"
68+
testImplementation "org.jetbrains.kotlin:kotlin-reflect:1.5.31"
6969
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
70-
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.2"
70+
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0"
7171
testImplementation "org.json:json:20200518"
7272
testImplementation "org.mockito:mockito-core:3.3.3"
7373
testImplementation 'org.robolectric:robolectric:4.5.1'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sdk=30

0 commit comments

Comments
 (0)