diff --git a/CHANGELOG.md b/CHANGELOG.md index d37858e..61b3cb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # ChangeLog +## Version 1.11.0 + +* Update: minSdk is now 19. +* Update: Kotlin to v1.9.23. +* Update: Material components to v1.12.0. +* Update: Minor update of other libraries. + + ## Version 1.10.0 * New: BOM (Bills of Materials) module diff --git a/README.md b/README.md index 1cffcc6..0742a7b 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ [![Corbind](logo.svg)](https://ldralighieri.github.io/Corbind) -[![Kotlin Version](https://img.shields.io/badge/Kotlin-v1.9.21-blue.svg?logo=kotlin)](https://kotlinlang.org) -[![Kotlin Coroutines Version](https://img.shields.io/badge/Coroutines-v1.7.3-blue.svg)](https://kotlinlang.org/docs/reference/coroutines-overview.html) +[![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) [![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) -[![API](https://img.shields.io/badge/API-14%2B-brightgreen.svg)](https://android-arsenal.com/api?level=14) +[![API](https://img.shields.io/badge/API-19%2B-brightgreen.svg)](https://android-arsenal.com/api?level=19) [![Publish status](https://github.com/LDRAlighieri/Corbind/actions/workflows/publish.yml/badge.svg)](https://github.com/LDRAlighieri/Corbind/actions) [![Google Dev Library](https://img.shields.io/badge/Google_DevLibrary-Corbind-blue)](https://devlibrary.withgoogle.com/products/android/repos/LDRAlighieri-Corbind) @@ -54,7 +54,7 @@ Please consider giving this repository a star ⭐ if you like the project. Platform bindings: ```kotlin dependencies { - implementation(platform("ru.ldralighieri.corbind:corbind-bom:2023.12.00")) + implementation(platform("ru.ldralighieri.corbind:corbind-bom:2024.01.00")) implementation("ru.ldralighieri.corbind:corbind") } ``` @@ -62,7 +62,7 @@ dependencies { AndroidX library bindings: ```kotlin dependencies { - implementation(platform("ru.ldralighieri.corbind:corbind-bom:2023.12.00")) + implementation(platform("ru.ldralighieri.corbind:corbind-bom:2024.01.00")) implementation("ru.ldralighieri.corbind:corbind-activity") implementation("ru.ldralighieri.corbind:corbind-appcompat") implementation("ru.ldralighieri.corbind:corbind-core") @@ -82,7 +82,7 @@ dependencies { Google 'material' library bindings: ```kotlin dependencies { - implementation(platform("ru.ldralighieri.corbind:corbind-bom:2023.12.00")) + implementation(platform("ru.ldralighieri.corbind:corbind-bom:2024.01.00")) implementation("ru.ldralighieri.corbind:corbind-material") } ``` diff --git a/corbind-activity/README.md b/corbind-activity/README.md index 474cec5..0923e49 100644 --- a/corbind-activity/README.md +++ b/corbind-activity/README.md @@ -5,7 +5,7 @@ To add androidx activity bindings, import `corbind-activity` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-activity:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-activity:1.11.0") } ``` diff --git a/corbind-appcompat/README.md b/corbind-appcompat/README.md index cfbce97..6aa26a5 100644 --- a/corbind-appcompat/README.md +++ b/corbind-appcompat/README.md @@ -5,7 +5,7 @@ To add androidx appcompat bindings, import `corbind-appcompat` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-appcompat:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-appcompat:1.11.0") } ``` diff --git a/corbind-bom/README.md b/corbind-bom/README.md index a5b939a..47b3de5 100644 --- a/corbind-bom/README.md +++ b/corbind-bom/README.md @@ -5,6 +5,6 @@ Corbind Libraries BOM (Bills of Materials). ```kotlin dependencies { - implementation(platform("ru.ldralighieri.corbind:corbind-bom:2023.12.00")) + implementation(platform("ru.ldralighieri.corbind:corbind-bom:2024.01.00")) } ``` diff --git a/corbind-bom/gradle.properties b/corbind-bom/gradle.properties index 3493d0f..726f040 100644 --- a/corbind-bom/gradle.properties +++ b/corbind-bom/gradle.properties @@ -15,7 +15,7 @@ # -VERSION_NAME=2024.01.00-SNAPSHOT +VERSION_NAME=2024.01.00 POM_ARTIFACT_ID=corbind-bom POM_NAME=Corbind Libraries BOM diff --git a/corbind-core/README.md b/corbind-core/README.md index aed50b6..34866af 100644 --- a/corbind-core/README.md +++ b/corbind-core/README.md @@ -5,7 +5,7 @@ To add androidx core bindings, import `corbind-core` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-core:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-core:1.11.0") } ``` diff --git a/corbind-drawerlayout/README.md b/corbind-drawerlayout/README.md index dd3262f..29d0a4b 100644 --- a/corbind-drawerlayout/README.md +++ b/corbind-drawerlayout/README.md @@ -5,7 +5,7 @@ To add androidx drawerlayout bindings, import `corbind-drawerlayout` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-drawerlayout:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-drawerlayout:1.11.0") } ``` diff --git a/corbind-fragment/README.md b/corbind-fragment/README.md index 8eb17a8..2169ddd 100644 --- a/corbind-fragment/README.md +++ b/corbind-fragment/README.md @@ -5,7 +5,7 @@ To add androidx fragment bindings, import `corbind-fragment` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-fragment:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-fragment:1.11.0") } ``` diff --git a/corbind-leanback/README.md b/corbind-leanback/README.md index fdc4908..76bd811 100644 --- a/corbind-leanback/README.md +++ b/corbind-leanback/README.md @@ -5,7 +5,7 @@ To add androidx leanback bindings, import `corbind-leanback` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-leanback:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-leanback:1.11.0") } ``` diff --git a/corbind-lifecycle/README.md b/corbind-lifecycle/README.md index 0aaee74..c0b802a 100644 --- a/corbind-lifecycle/README.md +++ b/corbind-lifecycle/README.md @@ -5,7 +5,7 @@ To add androidx lifecycle bindings, import `corbind-lifecycle` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-lifecycle:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-lifecycle:1.11.0") } ``` diff --git a/corbind-material/README.md b/corbind-material/README.md index 9c0f3ff..2b5eab8 100644 --- a/corbind-material/README.md +++ b/corbind-material/README.md @@ -5,7 +5,7 @@ To add material bindings, import `corbind-material` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-material:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-material:1.11.0") } ``` diff --git a/corbind-navigation/README.md b/corbind-navigation/README.md index 83685af..f1bacce 100644 --- a/corbind-navigation/README.md +++ b/corbind-navigation/README.md @@ -5,7 +5,7 @@ To add androidx navigation bindings, import `corbind-navigation` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-navigation:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-navigation:1.11.0") } ``` diff --git a/corbind-recyclerview/README.md b/corbind-recyclerview/README.md index f2798bd..03e6889 100644 --- a/corbind-recyclerview/README.md +++ b/corbind-recyclerview/README.md @@ -5,7 +5,7 @@ To add androidx recyclerview bindings, import `corbind-recyclerview` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-recyclerview:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-recyclerview:1.11.0") } ``` diff --git a/corbind-slidingpanelayout/README.md b/corbind-slidingpanelayout/README.md index 0714115..83065af 100644 --- a/corbind-slidingpanelayout/README.md +++ b/corbind-slidingpanelayout/README.md @@ -5,7 +5,7 @@ To add androidx slidingpanelayout bindings, import `corbind-slidingpanelayout` m ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-slidingpanelayout:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-slidingpanelayout:1.11.0") } ``` diff --git a/corbind-swiperefreshlayout/README.md b/corbind-swiperefreshlayout/README.md index a29e9e9..46ba73b 100644 --- a/corbind-swiperefreshlayout/README.md +++ b/corbind-swiperefreshlayout/README.md @@ -5,7 +5,7 @@ To add androidx swiperefreshlayout bindings, import `corbind-swiperefreshlayout` ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-swiperefreshlayout:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-swiperefreshlayout:1.11.0") } ``` diff --git a/corbind-viewpager/README.md b/corbind-viewpager/README.md index fd84881..c5dad1f 100644 --- a/corbind-viewpager/README.md +++ b/corbind-viewpager/README.md @@ -5,7 +5,7 @@ To add androidx viewpager bindings, import `corbind-viewpager` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-viewpager:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-viewpager:1.11.0") } ``` diff --git a/corbind-viewpager2/README.md b/corbind-viewpager2/README.md index 023a7d8..b823777 100644 --- a/corbind-viewpager2/README.md +++ b/corbind-viewpager2/README.md @@ -5,7 +5,7 @@ To add androidx viewpager2 bindings, import `corbind-viewpager2` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind-viewpager2:1.10.0") + implementation("ru.ldralighieri.corbind:corbind-viewpager2:1.11.0") } ``` diff --git a/corbind/README.md b/corbind/README.md index e191f45..d3cf58b 100644 --- a/corbind/README.md +++ b/corbind/README.md @@ -5,7 +5,7 @@ To add platform bindings, import `corbind` module: ```kotlin dependencies { - implementation("ru.ldralighieri.corbind:corbind:1.10.0") + implementation("ru.ldralighieri.corbind:corbind:1.11.0") } ``` diff --git a/gradle.properties b/gradle.properties index 8347f0d..f399bfa 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ systemProp.org.gradle.internal.http.socketTimeout=120000 # Maven GROUP=ru.ldralighieri.corbind -VERSION_NAME=1.11.0-SNAPSHOT +VERSION_NAME=1.11.0 POM_DESCRIPTION=Kotlin Coroutines binding APIs for Android UI widgets.