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

Commit

Permalink
Prepare release 1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
svenjacobs committed Feb 17, 2020
1 parent 5cc9cc3 commit 6a4ecc1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Version 1.13

_2020-02-17_

* Add `provider()` to `Module` DSL

## Version 1.12.1

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

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

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.12.1"
versionName = "1.13"

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

dependencies {
implementation("org.rewedigital.katana:katana-android:1.12.1")
implementation("org.rewedigital.katana:katana-androidx-fragment:1.12.1")
implementation("org.rewedigital.katana:katana-androidx-viewmodel-savedstate:1.12.1")
implementation("org.rewedigital.katana:katana-android:1.13")
implementation("org.rewedigital.katana:katana-androidx-fragment:1.13")
implementation("org.rewedigital.katana:katana-androidx-viewmodel-savedstate:1.13")
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: 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.12.1"
version = "1.13"

tasks.withType<Jar> {
archiveBaseName.set(artifactName)
Expand Down

0 comments on commit 6a4ecc1

Please sign in to comment.