Skip to content

Commit 3c2976f

Browse files
committed
Update VERSION for 3.3.47
1 parent ddc96cb commit 3c2976f

5 files changed

Lines changed: 16 additions & 15 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,18 @@ jobs:
8080
with:
8181
deno-version: v2.x
8282

83+
# Extract changelog content before removing the file
84+
- name: "Extract changelog for version"
85+
id: changelog
86+
run: |
87+
VERSION=${GITHUB_REF#refs/tags/}
88+
# Remove 'v' prefix if it exists
89+
VERSION_NO_V=${VERSION#v}
90+
CHANGELOG_CONTENT=$(node deploy/extract-changelog.js "$VERSION_NO_V")
91+
echo "content<<EOF" >> $GITHUB_OUTPUT
92+
echo "$CHANGELOG_CONTENT" >> $GITHUB_OUTPUT
93+
echo "EOF" >> $GITHUB_OUTPUT
94+
8395
# Update readme.txt changelog from CHANGELOG.md
8496
- name: "Update readme.txt changelog"
8597
run: deno run --allow-read --allow-write deploy/update-readme-changelog.ts
@@ -249,17 +261,6 @@ jobs:
249261
VERSION: ${{ env.WP_ORG_VERSION }}
250262

251263
# Create GitHub Release with changelog and zip file
252-
- name: "Extract changelog for version"
253-
id: changelog
254-
run: |
255-
VERSION=${GITHUB_REF#refs/tags/}
256-
# Remove 'v' prefix if it exists
257-
VERSION_NO_V=${VERSION#v}
258-
CHANGELOG_CONTENT=$(node deploy/extract-changelog.js "$VERSION_NO_V")
259-
echo "content<<EOF" >> $GITHUB_OUTPUT
260-
echo "$CHANGELOG_CONTENT" >> $GITHUB_OUTPUT
261-
echo "EOF" >> $GITHUB_OUTPUT
262-
263264
- name: "Create plugin zip file"
264265
run: |
265266
VERSION=${GITHUB_REF#refs/tags/}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ For instance:
1313

1414
## [Unreleased]
1515

16-
## [3.3.46] - 2025-07-10
16+
## [3.3.47] - 2025-07-10
1717
### Fixed
1818
- The `wizard.css` file is not updated correctly on the syncing process
1919

constant.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class WIND_PRESS
2626
/**
2727
* @var string
2828
*/
29-
public const VERSION = '3.3.46';
29+
public const VERSION = '3.3.47';
3030

3131
/**
3232
* @var string

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://ko-fi.com/Q5Q75XSF7
44
Tags: tailwind, tailwindcss, tailwind css
55
Requires at least: 6.0
66
Tested up to: 6.8
7-
Stable tag: 3.3.46
7+
Stable tag: 3.3.47
88
Requires PHP: 7.4
99
License: GPLv3
1010
License URI: https://www.gnu.org/licenses/gpl-3.0.html

windpress.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Plugin URI: https://wind.press
77
* Description: Integrate Tailwind CSS into WordPress seamlessly, in just seconds. Works well with the block editor, page builders, plugins, themes, and custom code.
88
* Text Domain: windpress
9-
* Version: 3.3.46
9+
* Version: 3.3.47
1010
* Requires at least: 6.0
1111
* Requires PHP: 7.4
1212
* Author: WindPress

0 commit comments

Comments
 (0)