Skip to content

Commit 7b2feb9

Browse files
committed
fragment-args-ktx: 1.3.5-0
1 parent 9cbbdf3 commit 7b2feb9

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

buildSrc/src/main/kotlin/dependencies.kt

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ object jetbrains {
1616
object androidx {
1717
const val activity = "androidx.activity:activity:1.2.0"
1818
const val annotation = "androidx.annotation:annotation:1.1.0"
19-
const val fragment = "androidx.fragment:fragment:1.3.0"
2019
const val viewbinding = "androidx.databinding:viewbinding:4.1.2"
2120

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

29+
object fragment : Group("androidx.fragment", version = "1.3.5") {
30+
val ktx by this
31+
}
32+
3033
object lifecycle : Group("androidx.lifecycle", version = "2.3.0") {
3134
val common by this
3235
val livedata_ktx by this

fragment-args-ktx/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
## Unreleased
22

3+
## 1.3.5-0 (2021-06-26)
4+
5+
### Dependencies
6+
7+
- kotlin-stdlib-jdk8 1.4.32 -> kotlin-stdlib 1.5.20
8+
- androidx.fragment 1.3.0 -> 1.3.5
9+
310
## 1.3.0-0 (2021-03-01)
411

512
### Dependencies

fragment-args-ktx/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ Delegates for safe dealing with fragments' arguments.
2020
## Installation
2121

2222
Add the dependency:
23+
2324
```groovy
2425
repositories {
2526
mavenCentral()
2627
google()
2728
}
2829
2930
dependencies {
30-
implementation("com.redmadrobot.extensions:fragment-args-ktx:1.3.0-0")
31+
implementation("com.redmadrobot.extensions:fragment-args-ktx:1.3.5-0")
3132
}
3233
```
3334

fragment-args-ktx/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
id("redmadrobot.publish")
77
}
88

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

1212
dependencies {

0 commit comments

Comments
 (0)