Skip to content

Commit

Permalink
create version 0.11.4 (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
RBusarow authored Aug 5, 2021
1 parent ad5f275 commit 6d50a90
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 22 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# 0.11.3
# 0.11.4
### Changes

### 🐛 Bug Fixes

- fix ViewModel duplicate bindings [@RBusarow](https://github.com/RBusarow) ([#127](https://github.com/rbusarow/Tangle/pull/127))
- only create FragmentFactory and _Subcomponent.Factory bindings once in each classpath [@RBusarow](https://github.com/RBusarow) ([#124](https://github.com/rbusarow/Tangle/pull/124))
- issue ([#123](https://github.com/rbusarow/Tangle/pull/123))

## Contributors
### 🧰 Maintenance

- create `release.sh` [@RBusarow](https://github.com/RBusarow) ([#126](https://github.com/rbusarow/Tangle/pull/126))

### Contributors

[@RBusarow](https://github.com/RBusarow)

Expand Down
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.3"
id("com.rickbusarow.tangle") version "0.11.4"
}
```

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

// Fragments
api("com.rickbusarow.tangle:tangle-fragment-api:0.11.3")
anvil("com.rickbusarow.tangle:tangle-fragment-compiler:0.11.3")
api("com.rickbusarow.tangle:tangle-fragment-api:0.11.4")
anvil("com.rickbusarow.tangle:tangle-fragment-compiler:0.11.4")

// ViewModels
api("com.rickbusarow.tangle:tangle-viewmodel-api:0.11.3")
anvil("com.rickbusarow.tangle:tangle-viewmodel-compiler:0.11.3")
api("com.rickbusarow.tangle:tangle-viewmodel-api:0.11.4")
anvil("com.rickbusarow.tangle:tangle-viewmodel-compiler:0.11.4")

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

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ kotlin.incremental=true

# Maven
GROUP=com.rickbusarow.tangle
VERSION_NAME=0.11.3
VERSION_NAME=0.11.4
POM_DESCRIPTION=Android dependency injection using Anvil
POM_INCEPTION_YEAR=2021
POM_URL=https://github.com/rbusarow/Tangle
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.3"
versionName = "0.11.4"

androidx-compose = "1.0.0"
androidx-fragment-version = "1.3.6"
Expand Down
2 changes: 1 addition & 1 deletion tangle-gradle-plugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ kotlin.code.style=official
kotlin.caching.enabled=true
kotlin.incremental=true

VERSION=0.11.3
VERSION=0.11.4
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.3"
const val TANGLE_VERSION = "0.11.4"
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.3"
id("com.rickbusarow.tangle") version "0.11.4"
}
```

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

// Fragments
api("com.rickbusarow.tangle:tangle-fragment-api:0.11.3")
anvil("com.rickbusarow.tangle:tangle-fragment-compiler:0.11.3")
api("com.rickbusarow.tangle:tangle-fragment-api:0.11.4")
anvil("com.rickbusarow.tangle:tangle-fragment-compiler:0.11.4")

// ViewModels
api("com.rickbusarow.tangle:tangle-viewmodel-api:0.11.3")
anvil("com.rickbusarow.tangle:tangle-viewmodel-compiler:0.11.3")
api("com.rickbusarow.tangle:tangle-viewmodel-api:0.11.4")
anvil("com.rickbusarow.tangle:tangle-viewmodel-compiler:0.11.4")

// optional Compose support
implementation("com.rickbusarow.tangle:tangle-viewmodel-compose:0.11.3")
implementation("com.rickbusarow.tangle:tangle-viewmodel-compose:0.11.4")
}
```
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.3"
id("com.rickbusarow.tangle") version "0.11.4"
}
```

Expand Down Expand Up @@ -73,7 +73,7 @@ pluginManagement {
// top-level build.gradle
plugins {
id "com.rickbusarow.module-check" version "0.11.3"
id "com.rickbusarow.module-check" version "0.11.4"
}
```

Expand Down
9 changes: 7 additions & 2 deletions website/src/pages/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# 0.11.3
# 0.11.4
### Changes

### 🐛 Bug Fixes

- fix ViewModel duplicate bindings [@RBusarow](https://github.com/RBusarow) ([#127](https://github.com/rbusarow/Tangle/pull/127))
- only create FragmentFactory and _Subcomponent.Factory bindings once in each classpath [@RBusarow](https://github.com/RBusarow) ([#124](https://github.com/rbusarow/Tangle/pull/124))
- issue ([#123](https://github.com/rbusarow/Tangle/pull/123))

## Contributors
### 🧰 Maintenance

- create `release.sh` [@RBusarow](https://github.com/RBusarow) ([#126](https://github.com/rbusarow/Tangle/pull/126))

### Contributors

[@RBusarow](https://github.com/RBusarow)

Expand Down

0 comments on commit 6d50a90

Please sign in to comment.