Skip to content

Commit 2ab1173

Browse files
authored
[AUTOMATIC] Release/1.45.0 (#950)
**This is an automatic release.** ## RevenueCat SDK ### ✨ New Features * Expose express purchase button API (#948) via Nicola Sacco (@nicfix) ### 🐞 Bugfixes * fix(stripe): show app name in express checkout (#949) via Nicola Sacco (@nicfix) <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Release housekeeping only (version strings, changelog, docs redirect); no application logic in the diff. > > **Overview** > **Automatic release** that bumps the SDK from **1.44.0** to **1.45.0** across `.version`, `package.json`, `src/helpers/constants.ts`, and the docs redirect in `scripts/docs/index.html`. > > The changelog records what ships in this tag (already merged via #948 and #949): a **public express purchase button API** (`presentExpressPurchaseButton` and related types) and a **Stripe express checkout fix** so the **app name** displays correctly in express checkout. This PR does not change SDK implementationβ€”only release metadata and notes. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 67100c3. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent e66c987 commit 2ab1173

6 files changed

Lines changed: 14 additions & 5 deletions

File tree

β€Ž.versionβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.44.0
1+
1.45.0

β€ŽCHANGELOG.latest.mdβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
## RevenueCat SDK
2+
### ✨ New Features
3+
* Expose express purchase button API (#948) via Nicola Sacco (@nicfix)
24
### 🐞 Bugfixes
3-
* Show correctly discounted price in footer (#894) via Burdock (@lburdock)
5+
* fix(stripe): show app name in express checkout (#949) via Nicola Sacco (@nicfix)

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 1.45.0
2+
## RevenueCat SDK
3+
### ✨ New Features
4+
* Expose express purchase button API (#948) via Nicola Sacco (@nicfix)
5+
### 🐞 Bugfixes
6+
* fix(stripe): show app name in express checkout (#949) via Nicola Sacco (@nicfix)
7+
18
## 1.44.0
29
## RevenueCat SDK
310
### 🐞 Bugfixes

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@revenuecat/purchases-js",
33
"description": "Web subscriptions made easy. Powered by RevenueCat",
44
"private": false,
5-
"version": "1.44.0",
5+
"version": "1.45.0",
66
"type": "module",
77
"files": [
88
"dist"

β€Žscripts/docs/index.htmlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!DOCTYPE html>
33
<html>
44
<head>
5-
<meta http-equiv="refresh" content="0; url=https://revenuecat.github.io/purchases-js-docs/1.44.0/" />
5+
<meta http-equiv="refresh" content="0; url=https://revenuecat.github.io/purchases-js-docs/1.45.0/" />
66
</head>
77
<body>
88
</body>

β€Žsrc/helpers/constants.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const VERSION = "1.44.0";
1+
export const VERSION = "1.45.0";
22
export const RC_ENDPOINT = import.meta.env.VITE_RC_ENDPOINT as string;
33
export const RC_ANALYTICS_ENDPOINT = import.meta.env
44
.VITE_RC_ANALYTICS_ENDPOINT as string;

0 commit comments

Comments
Β (0)