diff --git a/.version b/.version index c5523bd0..66333910 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.17.0 +0.18.0 diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index 67e57308..178bf5dd 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -1,3 +1,2 @@ -## RevenueCat SDK -### ✨ New Features -* WEB-1998: Allow metadata to be sent at purchase (#281) via Nicola Sacco (@nicfix) +### 🔄 Other Changes +* User events (#302) via Pol Miro (@polmiro) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4099eeb7..783293b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.18.0 +### 🔄 Other Changes +* User events (#302) via Pol Miro (@polmiro) + ## 0.17.0 ## RevenueCat SDK ### ✨ New Features diff --git a/package.json b/package.json index 9ea92f72..609ba368 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.17.0", + "version": "0.18.0", "type": "module", "files": [ "dist" diff --git a/scripts/docs/index.html b/scripts/docs/index.html index 7aef424a..d4e64752 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 02ea9ec4..bbe97a30 100644 --- a/src/helpers/constants.ts +++ b/src/helpers/constants.ts @@ -1,4 +1,4 @@ -export const VERSION = "0.17.0"; +export const VERSION = "0.18.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;