Skip to content

Commit d671a50

Browse files
committed
chore(release): bump version to 1.3.3 and update changelog
1 parent a586073 commit d671a50

2 files changed

Lines changed: 26 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file.
44

55
This changelog is managed with changelogen and is updated by running the changelog workflow.
66

7+
## v1.3.3
8+
9+
[compare changes](https://github.com/yanuaraditia/shopify-app-tanstack/compare/v1.3.1...v1.3.3)
10+
11+
### 🩹 Fixes
12+
13+
- **release:** Add preflight checks for version consistency in publish workflow ([a586073](https://github.com/yanuaraditia/shopify-app-tanstack/commit/a586073))
14+
15+
### ❤️ Contributors
16+
17+
- Yanuar Aditia ([@ngalor](https://github.com/ngalor))
18+
19+
## v1.3.2
20+
21+
[compare changes](https://github.com/yanuaraditia/shopify-app-tanstack/compare/v1.3.1...v1.3.2)
22+
23+
### 🩹 Fixes
24+
25+
- **release:** Add preflight checks for version consistency in publish workflow ([a586073](https://github.com/yanuaraditia/shopify-app-tanstack/commit/a586073))
26+
27+
### ❤️ Contributors
28+
29+
- Yanuar Aditia ([@ngalor](https://github.com/ngalor))
30+
731
## v1.3.1
832

933
[compare changes](https://github.com/yanuaraditia/shopify-app-tanstack/compare/v1.3.0...v1.3.1)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"description": "Shopify TanStack Router - to simplify building Shopify apps with TanStack Router",
33
"name": "@yanuaraditia/shopify-app-tanstack",
4-
"version": "1.3.1",
4+
"version": "1.3.3",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/yanuaraditia/shopify-app-tanstack.git"
@@ -58,7 +58,7 @@
5858
"clean": "rimraf .vite dist",
5959
"changelog": "changelogen --output CHANGELOG.md",
6060
"changelog:bump": "changelogen --bump --output CHANGELOG.md",
61-
"release": "bun run build && changelogen --bump --output CHANGELOG.md && (git rev-parse -q --verify refs/tags/v$npm_package_version >/dev/null || git tag v$npm_package_version) && git push origin v$npm_package_version"
61+
"release": "bun run build && changelogen --bump --output CHANGELOG.md && TAG=v$(node -p \"require('./package.json').version\") && (git rev-parse -q --verify refs/tags/$TAG >/dev/null || git tag $TAG) && git push origin $TAG"
6262
},
6363
"publishConfig": {
6464
"access": "public"

0 commit comments

Comments
 (0)