Skip to content

Commit 9136a63

Browse files
author
revenuecat-ops
committed
Version bump for 9.20.2
1 parent 8defaed commit 9136a63

File tree

11 files changed

+28
-14
lines changed

11 files changed

+28
-14
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ jobs:
354354
command: sudo pip install awscli
355355
- run:
356356
name: Deploy to S3
357-
command: aws s3 sync ~/project/docs/9.21.0-SNAPSHOT s3://purchases-docs/android/9.21.0-SNAPSHOT --delete
357+
command: aws s3 sync ~/project/docs/9.20.2 s3://purchases-docs/android/9.20.2 --delete
358358
- run:
359359
name: Update index.html
360360
command: aws s3 cp ~/project/docs/index.html s3://purchases-docs/android/index.html

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.21.0-SNAPSHOT
1+
9.20.2

CHANGELOG.latest.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
## RevenueCatUI SDK
2+
### Customer Center
3+
#### 🐞 Bugfixes
4+
* CC-628: Refresh Customer Center UI after subscription cancellation (#3061) via Facundo Menzella (@facumenzella)
25
### Paywallv2
36
#### 🐞 Bugfixes
4-
* Video's fallback image has double border (#3071) via Cesar de la Vega (@vegaro)
7+
* Improve carousel performance with videos (#3070) via Cesar de la Vega (@vegaro)
58

69
### 🔄 Other Changes
7-
* Rename `MultipleIntroOffers` override to `MultiplePhaseOffers` (#3069) via Cesar de la Vega (@vegaro)
8-
* Add LeakCanary (#3068) via Rick (@rickvdl)
9-
* Avoid posting stored metadata in pending transactions (#3065) via Toni Rico (@tonidero)
10-
* [AUTOMATIC] Update golden test files for backend integration tests (#3066) via RevenueCat Git Bot (@RCGitBot)
10+
* Make networkName nullable in ad event data types (#3076) via Pol Miro (@polmiro)
11+
* Remove networkName from AdFailedToLoad event (#3074) via Pol Miro (@polmiro)

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 9.20.2
2+
## RevenueCatUI SDK
3+
### Customer Center
4+
#### 🐞 Bugfixes
5+
* CC-628: Refresh Customer Center UI after subscription cancellation (#3061) via Facundo Menzella (@facumenzella)
6+
### Paywallv2
7+
#### 🐞 Bugfixes
8+
* Improve carousel performance with videos (#3070) via Cesar de la Vega (@vegaro)
9+
10+
### 🔄 Other Changes
11+
* Make networkName nullable in ad event data types (#3076) via Pol Miro (@polmiro)
12+
* Remove networkName from AdFailedToLoad event (#3074) via Pol Miro (@polmiro)
13+
114
## 9.20.1
215
## RevenueCatUI SDK
316
### Paywallv2

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta http-equiv="refresh" content="0; url=https://sdk.revenuecat.com/android/9.20.1/index.html" />
4+
<meta http-equiv="refresh" content="0; url=https://sdk.revenuecat.com/android/9.20.2/index.html" />
55
</head>
66
<body>
77
</body>

examples/CustomEntitlementComputationSample/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
agp = "8.13.2"
33
kotlin = "1.8.22"
4-
purchases = "9.21.0-SNAPSHOT"
4+
purchases = "9.20.2"
55
androidxCore = "1.10.1"
66

77
[plugins]

examples/MagicWeather/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
agp = "8.13.2"
33
androidxNavigation = "2.6.0"
44
kotlin = "1.9.0"
5-
purchases = "9.21.0-SNAPSHOT"
5+
purchases = "9.20.2"
66
lifecycle = "2.6.1"
77
androidxCore = "1.10.1"
88

examples/MagicWeatherCompose/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
agp = "8.13.2"
33
androidxNavigation = "2.5.3"
44
kotlin = "1.8.22"
5-
purchases = "9.21.0-SNAPSHOT"
5+
purchases = "9.20.2"
66
lifecycle = "2.5.0"
77
androidxCore = "1.10.1"
88

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#Fri Mar 31 10:31:20 PDT 2023
1414
GROUP=com.revenuecat.purchases
1515

16-
VERSION_NAME=9.21.0-SNAPSHOT
16+
VERSION_NAME=9.20.2
1717

1818
POM_DESCRIPTION=Mobile subscriptions in hours, not months.
1919
POM_URL=https://github.com/RevenueCat/purchases-android

purchases/src/main/kotlin/com/revenuecat/purchases/common/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ import com.revenuecat.purchases.api.BuildConfig
66
internal object Config {
77
var logLevel = LogLevel.debugLogsEnabled(BuildConfig.DEBUG)
88

9-
const val frameworkVersion = "9.21.0-SNAPSHOT"
9+
const val frameworkVersion = "9.20.2"
1010
}

0 commit comments

Comments
 (0)