bump versions to v1.3.3 (#24933)

This commit is contained in:
Michael H
2025-11-22 09:22:28 +11:00
committed by GitHub
parent 4450d738fa
commit 9ed53283a4
20 changed files with 32 additions and 32 deletions

View File

@@ -79,7 +79,7 @@ mode: center
console.log("runtime", process.versions.bun);
```
```txt
runtime 1.3.2
runtime 1.3.3
```
[See the Vercel Bun Runtime documentation for feature support →](https://vercel.com/docs/functions/runtimes/bun#feature-support)

View File

@@ -14,7 +14,7 @@ bunx nuxi init my-nuxt-app
✔ Which package manager would you like to use?
bun
◐ Installing dependencies...
bun install v1.3.2 (16b4bf34)
bun install v1.3.3 (16b4bf34)
+ @nuxt/devtools@0.8.2
+ nuxt@3.7.0
785 packages installed [2.67s]

View File

@@ -17,7 +17,7 @@ This will add the package to `peerDependencies` in `package.json`.
```json package.json icon="file-json"
{
"peerDependencies": {
"@types/bun": "^1.3.2" // [!code ++]
"@types/bun": "^1.3.3" // [!code ++]
}
}
```
@@ -30,7 +30,7 @@ Running `bun install` will install peer dependencies by default, unless marked o
```json package.json icon="file-json"
{
"peerDependencies": {
"@types/bun": "^1.3.2"
"@types/bun": "^1.3.3"
},
"peerDependenciesMeta": {
"@types/bun": { // [!code ++]

View File

@@ -99,7 +99,7 @@ bun update
bun update @types/bun --latest
# Update a dependency to a specific version
bun update @types/bun@1.3.2
bun update @types/bun@1.3.3
# Update all dependencies to the latest versions
bun update --latest

View File

@@ -37,7 +37,7 @@ jobs:
# ...
- uses: oven-sh/setup-bun@v2
with: # [!code ++]
bun-version: 1.3.2 # or "latest", "canary", <sha> # [!code ++]
bun-version: 1.3.3 # or "latest", "canary", <sha> # [!code ++]
```
---

View File

@@ -67,7 +67,7 @@ bun test
```
```txt
bun test v1.3.2 (9c68abdb)
bun test v1.3.3 (9c68abdb)
test/snap.test.ts:
✓ snapshot [1.05ms]
@@ -86,7 +86,7 @@ bun test --update-snapshots
```
```txt
bun test v1.3.2 (9c68abdb)
bun test v1.3.3 (9c68abdb)
test/snap.test.ts:
✓ snapshot [0.86ms]

View File

@@ -7,7 +7,7 @@ mode: center
Get the current version of Bun in a semver format.
```ts index.ts icon="/icons/typescript.svg"
Bun.version; // => "1.3.2"
Bun.version; // => "1.3.3"
```
---