diff --git a/.version b/.version index 34aae156..359c4108 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.31.0 +1.32.0 diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index 1dde98ef..61ce7b42 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -1,12 +1,6 @@ ## RevenueCat SDK ### ✨ New Features -* WEB-3903: Stripe Checkout branding support (#828) via Nicola Sacco (@nicfix) - -## RevenueCatUI SDK -### ✨ New Features -* PW-1201 | Bump `purchases-ui-js` package to enable promo text overrides for discounts (#832) via Rosie Watson (@RosieWatson) +* Pass checkout locale to /checkout/start (#826) via Volodymyr Kartavyi (@vkartaviy) ### 🔄 Other Changes -* Refactor checkoutStart/postCheckoutStart to use params objects (#825) via Volodymyr Kartavyi (@vkartaviy) -* Fix package.json to reflect correct version (#824) via Toni Rico (@tonidero) -* Merge release PR after deploy (#812) via Antonio Pallares (@ajpallares) +* Fix for package.json version that drifted from .version file (#835) via Nicola Sacco (@nicfix) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71994fe1..c8d02217 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.32.0 +## RevenueCat SDK +### ✨ New Features +* Pass checkout locale to /checkout/start (#826) via Volodymyr Kartavyi (@vkartaviy) + +### 🔄 Other Changes +* Fix for package.json version that drifted from .version file (#835) via Nicola Sacco (@nicfix) + ## 1.31.0 ## RevenueCat SDK ### ✨ New Features diff --git a/package.json b/package.json index 9ace173f..496e019a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@revenuecat/purchases-js", "description": "Web subscriptions made easy. Powered by RevenueCat", "private": false, - "version": "1.31.0", + "version": "1.32.0", "type": "module", "files": [ "dist" diff --git a/scripts/docs/index.html b/scripts/docs/index.html index 9b30be5f..4dd4fcdf 100644 --- a/scripts/docs/index.html +++ b/scripts/docs/index.html @@ -2,7 +2,7 @@
- + diff --git a/src/helpers/constants.ts b/src/helpers/constants.ts index 7d509dd6..55e39237 100644 --- a/src/helpers/constants.ts +++ b/src/helpers/constants.ts @@ -1,4 +1,4 @@ -export const VERSION = "1.31.0"; +export const VERSION = "1.32.0"; export const RC_ENDPOINT = import.meta.env.VITE_RC_ENDPOINT as string; export const RC_ANALYTICS_ENDPOINT = import.meta.env .VITE_RC_ANALYTICS_ENDPOINT as string;