Skip to content

Commit

Permalink
Prepare version 3.2.0-alpha05-0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
veyndan committed Jul 18, 2023
1 parent 5e4c4bf commit ab30063
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
## [Unreleased]

## [3.2.0-alpha05-0.2.3]

### Fixed

- [paging-compose-common] Published missing Android artifact.

## [3.2.0-alpha05-0.2.2]

### Fixed
Expand All @@ -23,6 +29,7 @@
- [paging-runtime-composeui] `paging-runtime-composeui` is now functionally equivalent to `paging-compose-common`,
as the additional functions that `paging-runtime-composeui` provides (i.e., `items` and `itemsIndexed`) have [been deprecated upstream](https://developer.android.com/jetpack/androidx/releases/paging#1.0.0-alpha19).

[Unreleased]: https://github.com/cashapp/multiplatform-paging/compare/3.2.0-alpha05-0.2.2...main-3.2.0-alpha05
[Unreleased]: https://github.com/cashapp/multiplatform-paging/compare/3.2.0-alpha05-0.2.3...main-3.2.0-alpha05
[3.2.0-alpha05-0.2.3]: https://github.com/cashapp/multiplatform-paging/releases/tag/3.2.0-alpha05-0.2.3
[3.2.0-alpha05-0.2.2]: https://github.com/cashapp/multiplatform-paging/releases/tag/3.2.0-alpha05-0.2.2
[3.2.0-alpha05-0.2.1]: https://github.com/cashapp/multiplatform-paging/releases/tag/3.2.0-alpha05-0.2.1
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,13 +153,13 @@ 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.2.0-alpha05` and Multiplatform Paging is on `0.2.2`,
the artifact for a release of `paging-common` will be `app.cash.paging:paging-common:3.2.0-alpha05-0.2.2`.
For example, if AndroidX Paging is on `3.2.0-alpha05` and Multiplatform Paging is on `0.2.3`,
the artifact for a release of `paging-common` will be `app.cash.paging:paging-common:3.2.0-alpha05-0.2.3`.

### `paging-common` for common

```kotlin
implementation("app.cash.paging:paging-common:3.2.0-alpha05-0.2.2")
implementation("app.cash.paging:paging-common:3.2.0-alpha05-0.2.3")
```

### `paging-compose-common` for common
Expand All @@ -168,19 +168,19 @@ implementation("app.cash.paging:paging-common:3.2.0-alpha05-0.2.2")
> with the notable exception that the deprecated [`items`](https://developer.android.com/reference/kotlin/androidx/paging/compose/package-summary#(androidx.compose.foundation.lazy.LazyListScope).items(androidx.paging.compose.LazyPagingItems,kotlin.Function1,kotlin.Function1,kotlin.Function2)) and [`itemsIndexed`](https://developer.android.com/reference/kotlin/androidx/paging/compose/package-summary#(androidx.compose.foundation.lazy.LazyListScope).itemsIndexed(androidx.paging.compose.LazyPagingItems,kotlin.Function2,kotlin.Function2,kotlin.Function3)) functions have been removed.
```kotlin
implementation("app.cash.paging:paging-compose-common:3.2.0-alpha05-0.2.2")
implementation("app.cash.paging:paging-compose-common:3.2.0-alpha05-0.2.3")
```

### `paging-runtime-composeui` for Android, desktop, and iOS

```kotlin
implementation("app.cash.paging:paging-runtime-composeui:3.2.0-alpha05-0.2.2")
implementation("app.cash.paging:paging-runtime-composeui:3.2.0-alpha05-0.2.3")
```

### `paging-runtime-uikit` for iOS

```kotlin
implementation("app.cash.paging:paging-runtime-uikit:3.2.0-alpha05-0.2.2")
implementation("app.cash.paging:paging-runtime-uikit:3.2.0-alpha05-0.2.3")
```

### Android
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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.2.3"

repositories {
mavenCentral()
Expand Down

0 comments on commit ab30063

Please sign in to comment.