Skip to content

Commit

Permalink
Prepare version 3.1.1-0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
veyndan committed Jun 20, 2023
1 parent 8c43a14 commit a4dccb1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 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.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`.
Expand Down Expand Up @@ -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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit a4dccb1

Please sign in to comment.