Skip to content

Commit

Permalink
Prepare version 3.3.0-alpha02-0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Feb 28, 2024
1 parent a747c7e commit b193be1
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

## [Unreleased]


## [3.3.0-alpha02-0.5.0]

### Changed

- Compile with Kotlin 1.9.22.

### Breaking

- [paging-compose-common] Compile with JetBrains Compose 1.6.0 which changes the ABI for JS-based Compose libraries. Downstream usage in JS targets will also need to be recompiled.


## [3.3.0-alpha02-0.4.0]

### Added
Expand All @@ -19,5 +31,7 @@
- [paging-runtime-uikit] Instantiating `PagingCollectionViewController` no longer requires an `indexCreator`.
It can be safely removed.

[Unreleased]: https://github.com/cashapp/multiplatform-paging/compare/3.3.0-alpha02-0.4.0...main-3.3.0-alpha02

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

### `paging-common` for common

```kotlin
implementation("app.cash.paging:paging-common:3.3.0-alpha02-0.4.0")
implementation("app.cash.paging:paging-common:3.3.0-alpha02-0.5.0")
```

### `paging-compose-common` for common

```kotlin
implementation("app.cash.paging:paging-compose-common:3.3.0-alpha02-0.4.0")
implementation("app.cash.paging:paging-compose-common:3.3.0-alpha02-0.5.0")
```

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

```kotlin
implementation("app.cash.paging:paging-runtime-uikit:3.3.0-alpha02-0.4.0")
implementation("app.cash.paging:paging-runtime-uikit:3.3.0-alpha02-0.5.0")
```

### `paging-testing` for common

```kotlin
implementation("app.cash.paging:paging-testing:3.3.0-alpha02-0.4.0")
implementation("app.cash.paging:paging-testing:3.3.0-alpha02-0.5.0")
```

### Android
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {

allprojects {
group = "app.cash.paging"
version = "${rootProject.libs.versions.androidx.paging.get()}-0.5.0-SNAPSHOT"
version = "${rootProject.libs.versions.androidx.paging.get()}-0.5.0"

repositories {
mavenCentral()
Expand Down

0 comments on commit b193be1

Please sign in to comment.