Skip to content

Commit

Permalink
Prepare version 3.1.1-0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
veyndan committed Feb 16, 2023
1 parent 385a71f commit b4bb762
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@

## [Unreleased]

## [3.1.1-0.2.0]

### Breaking

- [paging-runtime-uikit] `paging-runtime` renamed to `paging-runtime-uikit` (https://github.com/cashapp/multiplatform-paging/issues/8).

### Fixed

- [paging-common] Type alias `app.cash.paging.ExperimentalPagingApi` to `androidx.paging.ExperimentalPagingApi` (https://github.com/cashapp/multiplatform-paging/issues/6)
- [paging-common] Expose RemoteMediator's public constructor (https://github.com/cashapp/multiplatform-paging/pull/46)

## [3.1.1-0.1.1] - 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 @@ -112,19 +112,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.1`,
the artifact for a release of `paging-common` will be `app.cash.paging:paging-common:3.1.1-0.1.1`.
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`.

### `paging-common` for common

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

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

```kotlin
implementation("app.cash.paging:paging-runtime-uikit:3.1.1-0.1.1")
implementation("app.cash.paging:paging-runtime-uikit:3.1.1-0.2.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.2.0-SNAPSHOT"
version = "${rootProject.libs.versions.androidx.paging.get()}-0.2.0"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion samples/repo-search/ios-uikit/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "../shared"

SPEC CHECKSUMS:
shared: ac0399af8e8c61a9283520455ae8eb6b876afd3e
shared: fb95f87b0a7a9b74a2dd424603788250e02ee449

PODFILE CHECKSUM: b55170ece4a21dfab6296cdd188729608bcbcda5

Expand Down
19 changes: 19 additions & 0 deletions samples/repo-search/ios-uikit/RepoSearch.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
D2A5F1FC1F4A9144005CD714 /* Sources */,
D2A5F1FD1F4A9144005CD714 /* Frameworks */,
D2A5F1FE1F4A9144005CD714 /* Resources */,
3B473D9F3BC1F50400612209 /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
Expand Down Expand Up @@ -163,6 +164,24 @@
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
3B473D9F3BC1F50400612209 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-RepoSearch/Pods-RepoSearch-frameworks.sh",
"${PODS_ROOT}/../../shared/build/cocoapods/framework/shared.framework",
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/shared.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RepoSearch/Pods-RepoSearch-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
C0CC9D2A2575D3B3002DD3E0 /* SwiftLint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Expand Down

0 comments on commit b4bb762

Please sign in to comment.