mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
bump versions to v1.3.3 (#24933)
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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 ++]
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 ++]
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
@@ -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]
|
||||
|
||||
|
||||
@@ -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"
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user