From 7a34c565dd06b5bbadfaf6fcb13b2970d2114775 Mon Sep 17 00:00:00 2001 From: RCGitBot Date: Wed, 23 Oct 2024 17:53:44 +0000 Subject: [PATCH] Version bump for 0.11.2 --- .version | 2 +- CHANGELOG.latest.md | 8 +++++++- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- scripts/docs/index.html | 2 +- src/helpers/constants.ts | 2 +- 6 files changed, 22 insertions(+), 5 deletions(-) diff --git a/.version b/.version index af88ba8..bc859cb 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.11.1 +0.11.2 diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index 9a53f48..5888037 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -1,3 +1,9 @@ ## RevenueCat SDK ### 🐞 Bugfixes -* Restored the default accent and focus colors used before the customization implementation (#215) via Nicola Sacco (@nicfix) +* Fix handling unrecognized error codes in purchase operation (#217) via Toni Rico (@tonidero) +### 📦 Dependency Updates +* Bump fastlane from 2.224.0 to 2.225.0 (#219) via dependabot[bot] (@dependabot[bot]) +* Bump danger from 9.5.0 to 9.5.1 (#218) via dependabot[bot] (@dependabot[bot]) + +### 🔄 Other Changes +* Demo App: Allow using anonymous IDs and generate deep links on demo app (#213) via Toni Rico (@tonidero) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff8ff2f..4c15689 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.11.2 +## RevenueCat SDK +### 🐞 Bugfixes +* Fix handling unrecognized error codes in purchase operation (#217) via Toni Rico (@tonidero) +### 📦 Dependency Updates +* Bump fastlane from 2.224.0 to 2.225.0 (#219) via dependabot[bot] (@dependabot[bot]) +* Bump danger from 9.5.0 to 9.5.1 (#218) via dependabot[bot] (@dependabot[bot]) + +### 🔄 Other Changes +* Demo App: Allow using anonymous IDs and generate deep links on demo app (#213) via Toni Rico (@tonidero) + ## 0.11.1 ## RevenueCat SDK ### 🐞 Bugfixes diff --git a/package.json b/package.json index de61597..b595950 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": "0.11.1", + "version": "0.11.2", "type": "module", "files": [ "dist" diff --git a/scripts/docs/index.html b/scripts/docs/index.html index 0f0044e..a2ae02c 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 9ae4fda..0aeed92 100644 --- a/src/helpers/constants.ts +++ b/src/helpers/constants.ts @@ -1,2 +1,2 @@ -export const VERSION = "0.11.1"; +export const VERSION = "0.11.2"; export const RC_ENDPOINT = import.meta.env.VITE_RC_ENDPOINT as string;