File tree Expand file tree Collapse file tree 7 files changed +24
-11
lines changed
Expand file tree Collapse file tree 7 files changed +24
-11
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ### 1.2.1 - (12/04/2022)
4+
5+ - Improved artifacts publishing
6+
7+ ### 1.2.0 - (06/04/2022)
8+
9+ - Added new library for Android
10+ - Updated Couchbase Lite SDK to v3.0
11+ - Updated Kotlin
12+
13+ ### 1.1.0 - (17/06/2021)
14+
15+ - [ IMPROVEMENT] Improved nullability of return type for asObjectFlow extension
16+ - [ BUGFIX] Added usage of sendBlocking instead of offer
17+
318### 1.0.0 - (27/03/2020)
419
520First library release.
Original file line number Diff line number Diff line change @@ -32,13 +32,13 @@ allprojects {
3232And then to your module ` build.gradle ` file:
3333
3434``` groovy
35- implementation "com.github.MOLO17: couchbase-lite-kotlin:1.2.0 "
35+ implementation "com.github.MOLO17. couchbase-lite-kotlin:kotlin: 1.2.1 "
3636```
3737
3838For Android use
3939
4040``` groovy
41- implementation "com.github.MOLO17: couchbase-lite-android-ktx:1.2.0 "
41+ implementation "com.github.MOLO17. couchbase-lite-kotlin: android-ktx:1.2.1 "
4242```
4343
4444## Contents
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ dependencies {
4646 implementation libraries. coroutines
4747 implementation " com.couchbase.lite:couchbase-lite-android:2.7.0"
4848
49- implementation project(" :couchbase-lite- kotlin" )
49+ implementation project(" :kotlin" )
5050
5151 implementation " androidx.appcompat:appcompat:1.1.0"
5252 implementation " androidx.core:core-ktx:1.2.0"
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ buildscript {
1313}
1414
1515allprojects {
16+ version = ' 1.2.1'
17+ group = ' com.github.MOLO17'
18+
1619 repositories {
1720 google()
1821 mavenCentral()
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ android {
1010 defaultConfig {
1111 minSdk 21
1212 targetSdk 31
13- version = ' 1.2.0'
14- group = ' com.github.MOLO17'
1513
1614 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1715 consumerProguardFiles " consumer-rules.pro"
@@ -39,7 +37,7 @@ dependencies {
3937 implementation libraries. coroutines
4038 compileOnly libraries. lifecycle
4139 compileOnly couchbaseLite
42- api project(" :couchbase-lite- kotlin" )
40+ api project(" :kotlin" )
4341
4442 testImplementation libraries. unitTests
4543 testImplementation libraries. mockito
Original file line number Diff line number Diff line change 11apply plugin : ' kotlin'
22apply plugin : ' maven-publish'
33
4- version = ' 1.2.0'
5- group = ' com.github.MOLO17'
6-
74dependencies {
85 def couchbaseLite = " com.couchbase.lite:couchbase-lite-java:3.0.0"
96
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ rootProject.name='M17 Couchbase Lite Kotlin'
22include ' :app'
33
44include ' :library'
5- project(' :library' ). name = ' couchbase-lite- kotlin'
5+ project(' :library' ). name = ' kotlin'
66
77include ' :library-android'
8- project(' :library-android' ). name = ' couchbase-lite- android-ktx'
8+ project(' :library-android' ). name = ' android-ktx'
You can’t perform that action at this time.
0 commit comments