From a4dccb116e7fbfa2d0f1241af64b7ca5bb8e90d3 Mon Sep 17 00:00:00 2001 From: Veyndan Stuart Date: Tue, 20 Jun 2023 13:30:21 +0200 Subject: [PATCH] Prepare version 3.1.1-0.3.0 --- CHANGELOG.md | 9 ++++++++- README.md | 8 ++++---- build.gradle.kts | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5b564663b5..0c8b57aa4c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ ## [Unreleased] +## [3.1.1-0.3.0] + +### Added + +- [paging-common] Add Linux and MinGW targets (by [Cedric Hippmann](https://github.com/chippmann)) + ### Deprecated - [paging-runtime-uikit] Instantiating `PagingCollectionViewController` no longer requires an `indexCreator`. @@ -32,7 +38,8 @@ Initial release. -[Unreleased]: https://github.com/cashapp/multiplatform-paging/compare/3.1.1-0.2.0...main +[Unreleased]: https://github.com/cashapp/multiplatform-paging/compare/3.1.1-0.3.0...main +[3.1.1-0.3.0]: https://github.com/cashapp/multiplatform-paging/releases/tag/3.1.1-0.3.0 [3.1.1-0.2.0]: https://github.com/cashapp/multiplatform-paging/releases/tag/3.1.1-0.2.0 [3.1.1-0.1.1]: https://github.com/cashapp/multiplatform-paging/releases/tag/3.1.1-0.1.1 [3.1.1-0.1.0]: https://github.com/cashapp/multiplatform-paging/releases/tag/3.1.1-0.1.0 diff --git a/README.md b/README.md index c352ee29c30..232fe5b677b 100644 --- a/README.md +++ b/README.md @@ -110,19 +110,19 @@ The versioning scheme is of the form `X-Y` where: - `X` is the AndroidX Paging version that is being tracked. - `Y` is the Multiplatform Paging version. -For example, if AndroidX Paging is on `3.1.1` and Multiplatform Paging is on `0.2.0`, -the artifact for a release of `paging-common` will be `app.cash.paging:paging-common:3.1.1-0.2.0`. +For example, if AndroidX Paging is on `3.1.1` and Multiplatform Paging is on `0.3.0`, +the artifact for a release of `paging-common` will be `app.cash.paging:paging-common:3.1.1-0.3.0`. ### `paging-common` for common ```kotlin -implementation("app.cash.paging:paging-common:3.1.1-0.2.0") +implementation("app.cash.paging:paging-common:3.1.1-0.3.0") ``` ### `paging-runtime-uikit` for iOS ```kotlin -implementation("app.cash.paging:paging-runtime-uikit:3.1.1-0.2.0") +implementation("app.cash.paging:paging-runtime-uikit:3.1.1-0.3.0") ``` ### Android diff --git a/build.gradle.kts b/build.gradle.kts index 50c7bce00b8..5713c169609 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { allprojects { group = "app.cash.paging" - version = "${rootProject.libs.versions.androidx.paging.get()}-0.3.0-SNAPSHOT" + version = "${rootProject.libs.versions.androidx.paging.get()}-0.3.0" repositories { mavenCentral()