Skip to content

Commit 2cd0b39

Browse files
committed
chore(release): v0.0.18 version bump + fix Finalize install step
v0.0.18 shipped to npm and GitHub, but the release workflow's Finalize job errored at "Update version strings" because the script imports @t3tools/shared and the job didn't run bun install first. Added the missing step so future releases can bump versions automatically. Also applying the 0.0.17 -> 0.0.18 bump by hand here so main reflects the released version.
1 parent 91c961a commit 2cd0b39

6 files changed

Lines changed: 11 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,9 @@ jobs:
401401
with:
402402
node-version-file: package.json
403403

404+
- name: Install dependencies
405+
run: bun install --frozen-lockfile --ignore-scripts
406+
404407
- id: update_versions
405408
name: Update version strings
406409
env:

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@t3tools/desktop",
3-
"version": "0.0.17",
3+
"version": "0.0.18",
44
"private": true,
55
"main": "dist-electron/main.js",
66
"scripts": {

apps/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@berkayorhan/bcode",
3-
"version": "0.0.17",
3+
"version": "0.0.18",
44
"license": "MIT",
55
"repository": {
66
"type": "git",

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@t3tools/web",
3-
"version": "0.0.17",
3+
"version": "0.0.18",
44
"private": true,
55
"type": "module",
66
"scripts": {

bun.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/contracts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@t3tools/contracts",
3-
"version": "0.0.17",
3+
"version": "0.0.18",
44
"private": true,
55
"files": [
66
"dist"

0 commit comments

Comments
 (0)