Skip to content

Commit 0a383ae

Browse files
authored
Merge pull request #7 from MOLO17/release/v1.2.1
Release/v1.2.1
2 parents eb41b8c + 2572011 commit 0a383ae

File tree

7 files changed

+24
-11
lines changed

7 files changed

+24
-11
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
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

520
First library release.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ allprojects {
3232
And 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

3838
For 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

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ buildscript {
1313
}
1414

1515
allprojects {
16+
version = '1.2.1'
17+
group = 'com.github.MOLO17'
18+
1619
repositories {
1720
google()
1821
mavenCentral()

library-android/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

library/build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
apply plugin: 'kotlin'
22
apply plugin: 'maven-publish'
33

4-
version = '1.2.0'
5-
group = 'com.github.MOLO17'
6-
74
dependencies {
85
def couchbaseLite = "com.couchbase.lite:couchbase-lite-java:3.0.0"
96

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ rootProject.name='M17 Couchbase Lite Kotlin'
22
include ':app'
33

44
include ':library'
5-
project(':library').name = 'couchbase-lite-kotlin'
5+
project(':library').name = 'kotlin'
66

77
include ':library-android'
8-
project(':library-android').name = 'couchbase-lite-android-ktx'
8+
project(':library-android').name = 'android-ktx'

0 commit comments

Comments
 (0)