Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update version to 0.11.2 #119

Merged
merged 1 commit into from
Aug 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pluginManagement {
// top-level build.gradle.kts

plugins {
id("com.rickbusarow.tangle") version "0.11.1"
id("com.rickbusarow.tangle") version "0.11.2"
}
```

Expand Down Expand Up @@ -116,15 +116,15 @@ plugins {
dependencies {

// Fragments
api("com.rickbusarow.tangle:tangle-fragment-api:0.11.1")
anvil("com.rickbusarow.tangle:tangle-fragment-compiler:0.11.1")
api("com.rickbusarow.tangle:tangle-fragment-api:0.11.2")
anvil("com.rickbusarow.tangle:tangle-fragment-compiler:0.11.2")

// ViewModels
api("com.rickbusarow.tangle:tangle-viewmodel-api:0.11.1")
anvil("com.rickbusarow.tangle:tangle-viewmodel-compiler:0.11.1")
api("com.rickbusarow.tangle:tangle-viewmodel-api:0.11.2")
anvil("com.rickbusarow.tangle:tangle-viewmodel-compiler:0.11.2")

// optional Compose support
implementation("com.rickbusarow.tangle:tangle-viewmodel-compose:0.11.1")
implementation("com.rickbusarow.tangle:tangle-viewmodel-compose:0.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ sonarPlugin = "2.6.1"
spotless = "5.10.1"
targetSdk = "30"
taskTree = "1.5"
versionName = "0.11.1"
versionName = "0.11.2"

androidx-compose = "1.0.0"
androidx-fragment-version = "1.3.6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public open class TanglePlugin : BasePlugin() {

internal companion object {
const val TANGLE_GROUP = "com.rickbusarow.tangle"
const val TANGLE_VERSION = "0.11.1"
const val TANGLE_VERSION = "0.11.2"
const val EXTENSION_NAME = "tangle"
const val KOTLIN_ANDROID_ID = "org.jetbrains.kotlin.android"
const val ANVIL_ID = "com.squareup.anvil"
Expand Down
12 changes: 6 additions & 6 deletions website/docs/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pluginManagement {
// top-level build.gradle.kts

plugins {
id("com.rickbusarow.tangle") version "0.11.1"
id("com.rickbusarow.tangle") version "0.11.2"
}
```

Expand Down Expand Up @@ -81,14 +81,14 @@ plugins {
dependencies {

// Fragments
api("com.rickbusarow.tangle:tangle-fragment-api:0.11.1")
anvil("com.rickbusarow.tangle:tangle-fragment-compiler:0.11.1")
api("com.rickbusarow.tangle:tangle-fragment-api:0.11.2")
anvil("com.rickbusarow.tangle:tangle-fragment-compiler:0.11.2")

// ViewModels
api("com.rickbusarow.tangle:tangle-viewmodel-api:0.11.1")
anvil("com.rickbusarow.tangle:tangle-viewmodel-compiler:0.11.1")
api("com.rickbusarow.tangle:tangle-viewmodel-api:0.11.2")
anvil("com.rickbusarow.tangle:tangle-viewmodel-compiler:0.11.2")

// optional Compose support
implementation("com.rickbusarow.tangle:tangle-viewmodel-compose:0.11.1")
implementation("com.rickbusarow.tangle:tangle-viewmodel-compose:0.11.2")
}
```
4 changes: 2 additions & 2 deletions website/docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pluginManagement {
// top-level build.gradle.kts

plugins {
id("com.rickbusarow.tangle") version "0.11.1"
id("com.rickbusarow.tangle") version "0.11.2"
}
```

Expand Down Expand Up @@ -73,7 +73,7 @@ pluginManagement {
// top-level build.gradle

plugins {
id "com.rickbusarow.module-check" version "0.11.1"
id "com.rickbusarow.module-check" version "0.11.2"
}
```

Expand Down