Skip to content

Commit b4114d7

Browse files
author
Lisa Wray
committed
Bump versions to 2.1.0
1 parent 9502ccc commit b4114d7

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ Groupie lets you treat your content as logical groups and handles change notific
99
# Try it out:
1010

1111
```gradle
12-
compile 'com.xwray:groupie:2.0.3'
12+
compile 'com.xwray:groupie:2.1.0'
1313
```
1414

1515
Groupie includes a module for Kotlin and Kotlin Android extensions. Never write a ViewHolder again—Kotlin generates view references and Groupie uses a generic holder. [Setup here.](#kotlin)
1616

1717
```gradle
18-
compile 'com.xwray:groupie:2.0.3'
19-
compile 'com.xwray:groupie-kotlin-android-extensions:2.0.3'
18+
compile 'com.xwray:groupie:2.1.0'
19+
compile 'com.xwray:groupie-kotlin-android-extensions:2.1.0'
2020
```
2121

2222
Groupie also supports Android's [data binding](https://developer.android.com/topic/libraries/data-binding/index.html) to generate view holders. [Setup here.](#data-binding)
2323

2424
```gradle
25-
compile 'com.xwray:groupie:2.0.3'
26-
compile 'com.xwray:groupie-databinding:2.0.3'
25+
compile 'com.xwray:groupie:2.1.0'
26+
compile 'com.xwray:groupie-databinding:2.1.0'
2727
```
2828

2929
You can also use Groupie with Java and your existing ViewHolders.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
ext.compileSdkVersion = 27
99
ext.buildToolsVersion = '27.0.3'
1010
ext.minSdkVersion = 14
11-
ext.novodaBintrayVersion = '0.8.0'
11+
ext.novodaBintrayVersion = '0.8.1'
1212
ext.supportLibVersion = '27.1.1'
1313
ext.databinding_version = '3.1.1'
1414

library-databinding/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ dependencies {
3838
compileOnly("com.android.databinding:baseLibrary:$databinding_version") {
3939
transitive = false
4040
}
41-
compileOnly('com.xwray:groupie:2.1.0-alpha1')
41+
compileOnly('com.xwray:groupie:2.1.0')
4242
}
4343

4444
publish {
4545
userOrg = 'lisawray'
4646
groupId = 'com.xwray'
4747
artifactId = 'groupie-databinding'
48-
publishVersion = '2.1.0-alpha1'
48+
publishVersion = '2.1.0'
4949
desc = 'Library for groups and multiple view types in a RecyclerView'
5050
website = 'https://github.com/lisawray/groupie'
5151
}

library-kotlin-android-extensions/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ android {
4242
}
4343

4444
dependencies {
45-
compileOnly 'com.xwray:groupie:2.1.0-alpha1'
45+
compileOnly 'com.xwray:groupie:2.1.0'
4646
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
4747
}
4848

@@ -58,7 +58,7 @@ publish {
5858
userOrg = 'lisawray'
5959
groupId = 'com.xwray'
6060
artifactId = 'groupie-kotlin-android-extensions'
61-
publishVersion = '2.1.0-alpha1'
61+
publishVersion = '2.1.0'
6262
desc = 'Library for groups and multiple view types in a RecyclerView'
6363
website = 'https://github.com/lisawray/groupie'
6464
}

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ publish {
4141
userOrg = 'lisawray'
4242
groupId = 'com.xwray'
4343
artifactId = 'groupie'
44-
publishVersion = '2.1.0-alpha1'
44+
publishVersion = '2.1.0'
4545
desc = 'Library for groups and multiple view types in a RecyclerView'
4646
website = 'https://github.com/lisawray/groupie'
4747
}

0 commit comments

Comments
 (0)