Skip to content

Commit aef55dc

Browse files
authored
2.1.0 (#170)
1 parent 1a9b228 commit aef55dc

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

readium/shared/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ 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

@@ -22,7 +24,7 @@ All notable changes to this project will be documented in this file.
2224

2325
### Changed
2426

25-
* Upgraded to Kotlin 1.5.21 and Gradle 7.1.1
27+
* Upgraded to Kotlin 1.5.31 and Gradle 7.1.1
2628

2729
### Fixed
2830

@@ -139,4 +141,5 @@ All notable changes to this project will be documented in this file.
139141
[2.0.0-beta.1]: https://github.com/readium/r2-shared-kotlin/compare/2.0.0-alpha.2...2.0.0-beta.1
140142
[2.0.0-beta.2]: https://github.com/readium/r2-shared-kotlin/compare/2.0.0-beta.1...2.0.0-beta.2
141143
[2.0.0]: https://github.com/readium/r2-shared-kotlin/compare/2.0.0-beta.2...2.0.0
144+
[2.1.0]: https://github.com/readium/r2-shared-kotlin/compare/2.0.0...2.1.0
142145

readium/shared/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
mavenCentral()
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/shared/r2-shared/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 {
@@ -63,18 +63,18 @@ dependencies {
6363
implementation "nl.komponents.kovenant:kovenant-functional:3.3.0"
6464
implementation "nl.komponents.kovenant:kovenant-jvm:3.3.0"
6565
implementation "nl.komponents.kovenant:kovenant:3.3.0"
66-
implementation "org.jetbrains.kotlin:kotlin-reflect:1.5.20"
67-
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0-native-mt"
66+
implementation "org.jetbrains.kotlin:kotlin-reflect:1.5.31"
67+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0"
6868
implementation "org.jsoup:jsoup:1.13.1"
6969

7070
testImplementation 'androidx.test.ext:junit-ktx:1.1.3'
7171
testImplementation 'androidx.test:core-ktx:1.4.0'
7272
testImplementation "junit:junit:4.13.2"
7373
testImplementation "net.sf.kxml:kxml2:2.3.0"
7474
testImplementation 'org.assertj:assertj-core:3.19.0'
75-
testImplementation "org.jetbrains.kotlin:kotlin-reflect:1.5.20"
75+
testImplementation "org.jetbrains.kotlin:kotlin-reflect:1.5.31"
7676
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
77-
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.2"
77+
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0"
7878
// Latest version of org.json is incompatible with the one bundled in Android, breaking the tests.
7979
//noinspection GradleDependency
8080
testImplementation "org.json:json:20200518"
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)