Skip to content

Commit

Permalink
fragment-args-ktx: 1.3.5-0
Browse files Browse the repository at this point in the history
  • Loading branch information
osipxd committed Jun 26, 2021
1 parent 9cbbdf3 commit 7b2feb9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
5 changes: 4 additions & 1 deletion buildSrc/src/main/kotlin/dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ object jetbrains {
object androidx {
const val activity = "androidx.activity:activity:1.2.0"
const val annotation = "androidx.annotation:annotation:1.1.0"
const val fragment = "androidx.fragment:fragment:1.3.0"
const val viewbinding = "androidx.databinding:viewbinding:4.1.2"

object appcompat : Group("androidx.appcompat", version = "1.2.0") {
Expand All @@ -27,6 +26,10 @@ object androidx {
val ktx by this
}

object fragment : Group("androidx.fragment", version = "1.3.5") {
val ktx by this
}

object lifecycle : Group("androidx.lifecycle", version = "2.3.0") {
val common by this
val livedata_ktx by this
Expand Down
7 changes: 7 additions & 0 deletions fragment-args-ktx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Unreleased

## 1.3.5-0 (2021-06-26)

### Dependencies

- kotlin-stdlib-jdk8 1.4.32 -> kotlin-stdlib 1.5.20
- androidx.fragment 1.3.0 -> 1.3.5

## 1.3.0-0 (2021-03-01)

### Dependencies
Expand Down
3 changes: 2 additions & 1 deletion fragment-args-ktx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ Delegates for safe dealing with fragments' arguments.
## Installation

Add the dependency:

```groovy
repositories {
mavenCentral()
google()
}
dependencies {
implementation("com.redmadrobot.extensions:fragment-args-ktx:1.3.0-0")
implementation("com.redmadrobot.extensions:fragment-args-ktx:1.3.5-0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion fragment-args-ktx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("redmadrobot.publish")
}

version = "1.3.0-0"
version = "1.3.5-0"
description = "Delegates for safe dealing with fragments' arguments"

dependencies {
Expand Down

0 comments on commit 7b2feb9

Please sign in to comment.