Skip to content

Commit b4bb762

Browse files
committed
Prepare version 3.1.1-0.2.0
1 parent 385a71f commit b4bb762

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

33
## [Unreleased]
44

5+
## [3.1.1-0.2.0]
6+
57
### Breaking
68

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

911
### Fixed
1012

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

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

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -112,19 +112,19 @@ The versioning scheme is of the form `X-Y` where:
112112
- `X` is the AndroidX Paging version that is being tracked.
113113
- `Y` is the Multiplatform Paging version.
114114

115-
For example, if AndroidX Paging is on `3.1.1` and Multiplatform Paging is on `0.1.1`,
116-
the artifact for a release of `paging-common` will be `app.cash.paging:paging-common:3.1.1-0.1.1`.
115+
For example, if AndroidX Paging is on `3.1.1` and Multiplatform Paging is on `0.2.0`,
116+
the artifact for a release of `paging-common` will be `app.cash.paging:paging-common:3.1.1-0.2.0`.
117117

118118
### `paging-common` for common
119119

120120
```kotlin
121-
implementation("app.cash.paging:paging-common:3.1.1-0.1.1")
121+
implementation("app.cash.paging:paging-common:3.1.1-0.2.0")
122122
```
123123

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

126126
```kotlin
127-
implementation("app.cash.paging:paging-runtime-uikit:3.1.1-0.1.1")
127+
implementation("app.cash.paging:paging-runtime-uikit:3.1.1-0.2.0")
128128
```
129129

130130
### Android

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010

1111
allprojects {
1212
group = "app.cash.paging"
13-
version = "${rootProject.libs.versions.androidx.paging.get()}-0.2.0-SNAPSHOT"
13+
version = "${rootProject.libs.versions.androidx.paging.get()}-0.2.0"
1414

1515
repositories {
1616
mavenCentral()

samples/repo-search/ios-uikit/Podfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ EXTERNAL SOURCES:
99
:path: "../shared"
1010

1111
SPEC CHECKSUMS:
12-
shared: ac0399af8e8c61a9283520455ae8eb6b876afd3e
12+
shared: fb95f87b0a7a9b74a2dd424603788250e02ee449
1313

1414
PODFILE CHECKSUM: b55170ece4a21dfab6296cdd188729608bcbcda5
1515

samples/repo-search/ios-uikit/RepoSearch.xcodeproj/project.pbxproj

+19
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@
106106
D2A5F1FC1F4A9144005CD714 /* Sources */,
107107
D2A5F1FD1F4A9144005CD714 /* Frameworks */,
108108
D2A5F1FE1F4A9144005CD714 /* Resources */,
109+
3B473D9F3BC1F50400612209 /* [CP] Embed Pods Frameworks */,
109110
);
110111
buildRules = (
111112
);
@@ -163,6 +164,24 @@
163164
/* End PBXResourcesBuildPhase section */
164165

165166
/* Begin PBXShellScriptBuildPhase section */
167+
3B473D9F3BC1F50400612209 /* [CP] Embed Pods Frameworks */ = {
168+
isa = PBXShellScriptBuildPhase;
169+
buildActionMask = 2147483647;
170+
files = (
171+
);
172+
inputPaths = (
173+
"${PODS_ROOT}/Target Support Files/Pods-RepoSearch/Pods-RepoSearch-frameworks.sh",
174+
"${PODS_ROOT}/../../shared/build/cocoapods/framework/shared.framework",
175+
);
176+
name = "[CP] Embed Pods Frameworks";
177+
outputPaths = (
178+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/shared.framework",
179+
);
180+
runOnlyForDeploymentPostprocessing = 0;
181+
shellPath = /bin/sh;
182+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RepoSearch/Pods-RepoSearch-frameworks.sh\"\n";
183+
showEnvVarsInLog = 0;
184+
};
166185
C0CC9D2A2575D3B3002DD3E0 /* SwiftLint */ = {
167186
isa = PBXShellScriptBuildPhase;
168187
buildActionMask = 2147483647;

0 commit comments

Comments
 (0)