Skip to content

Commit

Permalink
Prepare version 3.1.1-0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
veyndan committed Nov 8, 2022
1 parent f060933 commit 3b65ef9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [3.1.1-0.1.1] - 2022-11-08

### Fixed

- [paging-common] Add missing iOS target
- [paging-runtime] Add missing iOS target

## [3.1.1-0.1.0] - 2022-11-08

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,19 +111,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.1.0`,
the artifact for a release of `paging-common` will be `app.cash.paging:paging-common:3.1.1-0.1.0`.
For example, if AndroidX Paging is on `3.1.1` and Multiplatform Paging is on `0.1.1`,
the artifact for a release of `paging-common` will be `app.cash.paging:paging-common:3.1.1-0.1.1`.

### `paging-common` for common

```kotlin
implementation("app.cash.paging:paging-common:3.1.1-0.1.0")
implementation("app.cash.paging:paging-common:3.1.1-0.1.1")
```

### `paging-runtime` for iOS

```kotlin
implementation("app.cash.paging:paging-runtime:3.1.1-0.1.0")
implementation("app.cash.paging:paging-runtime:3.1.1-0.1.1")
```

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

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

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion samples/repo-search/iosApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- shared (3.1.1-0.1.0)
- shared (3.1.1-0.1.1)

DEPENDENCIES:
- shared (from `../shared`)
Expand Down
4 changes: 2 additions & 2 deletions samples/repo-search/shared/shared.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'shared'
spec.version = '3.1.1-0.1.0'
spec.version = '3.1.1-0.1.1'
spec.homepage = 'https://github.com/cashapp/multiplatform-paging/tree/main/samples/repo-search/shared'
spec.source = { :http=> ''}
spec.authors = ''
Expand Down Expand Up @@ -36,4 +36,4 @@ Pod::Spec.new do |spec|
}
]

end
end

0 comments on commit 3b65ef9

Please sign in to comment.