diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c8b57aa4c4..0170e417a3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ ## [Unreleased] +## [3.1.1-0.3.1] + +### Added + +- [paging-common] Add macOS targets (by [Jeff Lockhart](https://github.com/jeffdgr8)) + ## [3.1.1-0.3.0] ### Added @@ -38,7 +44,8 @@ Initial release. -[Unreleased]: https://github.com/cashapp/multiplatform-paging/compare/3.1.1-0.3.0...main +[Unreleased]: https://github.com/cashapp/multiplatform-paging/compare/3.1.1-0.3.1...main +[3.1.1-0.3.1]: https://github.com/cashapp/multiplatform-paging/releases/tag/3.1.1-0.3.1 [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 diff --git a/README.md b/README.md index 232fe5b677b..5b60b66ffde 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.3.0`, -the artifact for a release of `paging-common` will be `app.cash.paging:paging-common:3.1.1-0.3.0`. +For example, if AndroidX Paging is on `3.1.1` and Multiplatform Paging is on `0.3.1`, +the artifact for a release of `paging-common` will be `app.cash.paging:paging-common:3.1.1-0.3.1`. ### `paging-common` for common ```kotlin -implementation("app.cash.paging:paging-common:3.1.1-0.3.0") +implementation("app.cash.paging:paging-common:3.1.1-0.3.1") ``` ### `paging-runtime-uikit` for iOS ```kotlin -implementation("app.cash.paging:paging-runtime-uikit:3.1.1-0.3.0") +implementation("app.cash.paging:paging-runtime-uikit:3.1.1-0.3.1") ``` ### Android diff --git a/build.gradle.kts b/build.gradle.kts index 2ff5efd8a85..b2be068c89f 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.4.0-SNAPSHOT" + version = "${rootProject.libs.versions.androidx.paging.get()}-0.3.1" repositories { mavenCentral()