Skip to content

Commit

Permalink
Updated README.md of each module and CHANGELOG.md for version 1.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LDRAlighieri committed Feb 22, 2025
1 parent f24791a commit 9fd1eb4
Show file tree
Hide file tree
Showing 19 changed files with 30 additions and 23 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# ChangeLog


## Version 1.11.2

* Update: Kotlin to v2.1.10.
* Update: Minor update of other libraries.


## Version 1.11.1

* Update: compileSdk to v35.
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Corbind](logo.svg)](https://ldralighieri.github.io/Corbind)

[![Kotlin Version](https://img.shields.io/badge/Kotlin-v1.9.23-blue.svg?logo=kotlin)](https://kotlinlang.org)
[![Kotlin Coroutines Version](https://img.shields.io/badge/Coroutines-v1.8.0-blue.svg)](https://kotlinlang.org/docs/reference/coroutines-overview.html)
[![Kotlin Version](https://img.shields.io/badge/Kotlin-v2.1.10-blue.svg?logo=kotlin)](https://kotlinlang.org)
[![Kotlin Coroutines Version](https://img.shields.io/badge/Coroutines-v1.10.1-blue.svg)](https://kotlinlang.org/docs/reference/coroutines-overview.html)
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)

[![Codacy Badge](https://api.codacy.com/project/badge/Grade/a1c9a1b1d1ce4ca7a201ab93492bf6e0)](https://app.codacy.com/gh/LDRAlighieri/Corbind)
Expand Down Expand Up @@ -54,15 +54,15 @@ Please consider giving this repository a star ⭐ if you like the project.
Platform bindings:
```kotlin
dependencies {
implementation(platform("ru.ldralighieri.corbind:corbind-bom:2025.02.00"))
implementation(platform("ru.ldralighieri.corbind:corbind-bom:2025.02.01"))
implementation("ru.ldralighieri.corbind:corbind")
}
```

AndroidX library bindings:
```kotlin
dependencies {
implementation(platform("ru.ldralighieri.corbind:corbind-bom:2025.02.00"))
implementation(platform("ru.ldralighieri.corbind:corbind-bom:2025.02.01"))
implementation("ru.ldralighieri.corbind:corbind-activity")
implementation("ru.ldralighieri.corbind:corbind-appcompat")
implementation("ru.ldralighieri.corbind:corbind-core")
Expand All @@ -82,7 +82,7 @@ dependencies {
Google 'material' library bindings:
```kotlin
dependencies {
implementation(platform("ru.ldralighieri.corbind:corbind-bom:2025.02.00"))
implementation(platform("ru.ldralighieri.corbind:corbind-bom:2025.02.01"))
implementation("ru.ldralighieri.corbind:corbind-material")
}
```
Expand Down Expand Up @@ -185,7 +185,7 @@ If I forgot something or you have any ideas what can be added or corrected, plea
## License

```
Copyright 2019-2023 Vladimir Raupov
Copyright 2019-2025 Vladimir Raupov
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion corbind-activity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx activity bindings, import `corbind-activity` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-activity:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-activity:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-appcompat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx appcompat bindings, import `corbind-appcompat` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-appcompat:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-appcompat:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-bom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ Corbind Libraries BOM (Bills of Materials).

```kotlin
dependencies {
implementation(platform("ru.ldralighieri.corbind:corbind-bom:2025.02.00"))
implementation(platform("ru.ldralighieri.corbind:corbind-bom:2025.02.01"))
}
```
2 changes: 1 addition & 1 deletion corbind-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx core bindings, import `corbind-core` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-core:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-core:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-drawerlayout/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx drawerlayout bindings, import `corbind-drawerlayout` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-drawerlayout:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-drawerlayout:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-fragment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx fragment bindings, import `corbind-fragment` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-fragment:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-fragment:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-leanback/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx leanback bindings, import `corbind-leanback` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-leanback:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-leanback:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-lifecycle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx lifecycle bindings, import `corbind-lifecycle` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-lifecycle:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-lifecycle:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-material/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add material bindings, import `corbind-material` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-material:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-material:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-navigation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx navigation bindings, import `corbind-navigation` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-navigation:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-navigation:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-recyclerview/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx recyclerview bindings, import `corbind-recyclerview` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-recyclerview:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-recyclerview:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-slidingpanelayout/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx slidingpanelayout bindings, import `corbind-slidingpanelayout` m

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-slidingpanelayout:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-slidingpanelayout:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-swiperefreshlayout/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx swiperefreshlayout bindings, import `corbind-swiperefreshlayout`

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-swiperefreshlayout:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-swiperefreshlayout:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-viewpager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx viewpager bindings, import `corbind-viewpager` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-viewpager:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-viewpager:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind-viewpager2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add androidx viewpager2 bindings, import `corbind-viewpager2` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind-viewpager2:1.11.1")
implementation("ru.ldralighieri.corbind:corbind-viewpager2:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion corbind/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To add platform bindings, import `corbind` module:

```kotlin
dependencies {
implementation("ru.ldralighieri.corbind:corbind:1.11.1")
implementation("ru.ldralighieri.corbind:corbind:1.11.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ systemProp.org.gradle.internal.http.socketTimeout=120000

# Maven
GROUP=ru.ldralighieri.corbind
VERSION_NAME=1.12.0-SNAPSHOT
VERSION_NAME=1.11.2

POM_DESCRIPTION=Kotlin Coroutines binding APIs for Android UI widgets.

Expand Down

0 comments on commit 9fd1eb4

Please sign in to comment.