Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Update androidx.lifecycle dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
svenjacobs committed Jan 27, 2020
1 parent b1b6f82 commit 16fdc8e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Version 1.12.0

_2020-01-27_

* Update `androidx.lifecycle:lifecycle-viewmodel` dependency to version 2.2.0
* Update `androidx.lifecycle:lifecycle-viewmodel-savedstate` dependency to first stable version 1.0.0

## Version 1.11.0

_2020-01-23_
Expand Down
4 changes: 2 additions & 2 deletions Getting Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ a repository to your project. Then add the following dependencies:

```gradle
dependencies {
implementation 'org.rewedigital.katana:katana-core:1.10.0'
implementation 'org.rewedigital.katana:katana-core:1.12.0'
// Use this artifact for Katana on Android
implementation 'org.rewedigital.katana:katana-android:1.10.0'
implementation 'org.rewedigital.katana:katana-android:1.12.0'
}
```

8 changes: 4 additions & 4 deletions android-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ android {

applicationId = "org.rewedigital.katana.android.example"
versionCode = 1
versionName = "1.11.0"
versionName = "1.12.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
}

dependencies {
implementation("org.rewedigital.katana:katana-android:1.11.0")
implementation("org.rewedigital.katana:katana-androidx-fragment:1.11.0")
implementation("org.rewedigital.katana:katana-androidx-viewmodel-savedstate:1.11.0-rc03")
implementation("org.rewedigital.katana:katana-android:1.12.0")
implementation("org.rewedigital.katana:katana-androidx-fragment:1.12.0")
implementation("org.rewedigital.katana:katana-androidx-viewmodel-savedstate:1.12.0")
implementation("androidx.appcompat:appcompat:1.1.0")
implementation("androidx.constraintlayout:constraintlayout:1.1.3")
implementation("org.jetbrains.kotlin:kotlin-reflect:1.3.61")
Expand Down
2 changes: 0 additions & 2 deletions androidx-viewmodel-savedstate/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ configureBase(
publicationComponent = components["android"]
)

version = "1.11.0-rc03"

dependencies {
api(project(":core"))
api(project(":androidx-viewmodel")) {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/BaseProject.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fun Project.configureBase(
}

group = "org.rewedigital.katana"
version = "1.11.0"
version = "1.12.0"

tasks.withType<Jar> {
archiveBaseName.set(artifactName)
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ object Versions {
const val androidPlugin = "3.3.2"
const val androidXCollection = "1.1.0"
const val androidXFragment = "1.2.0"
const val androidXLifecycleViewModel = "2.1.0"
const val androidXLifecycleViewModelSavedState = "1.0.0-rc03"
const val androidXLifecycleViewModel = "2.2.0"
const val androidXLifecycleViewModelSavedState = "1.0.0"
const val gradleVersionsPlugin = "0.27.0"
const val kluent = "1.58"
const val kluent = "1.59"
const val kotlin = "1.3.61"
const val spek = "2.0.9"
}
Expand Down

0 comments on commit 16fdc8e

Please sign in to comment.