diff options
author | 2023-07-19 23:57:41 -0700 | |
---|---|---|
committer | 2023-07-19 23:57:41 -0700 | |
commit | 0b365781a8ddbea40ec3259e5bf0435c9aebc0a6 (patch) | |
tree | 7683dac60e7fc46967d649e802d9cd7b6c027340 | |
parent | dd46c11273211601bb67eff04dde7279fff5b8d5 (diff) | |
download | bun-0b365781a8ddbea40ec3259e5bf0435c9aebc0a6.tar.gz bun-0b365781a8ddbea40ec3259e5bf0435c9aebc0a6.tar.zst bun-0b365781a8ddbea40ec3259e5bf0435c9aebc0a6.zip |
Bump version to Bun v0.7.0
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | bench/bundle/package.json | 4 | ||||
-rw-r--r-- | docs/quickstart.md | 2 | ||||
-rw-r--r-- | examples/react-file-system-router/package.json | 4 | ||||
-rw-r--r-- | packages/bun-lambda/package.json | 2 | ||||
-rw-r--r-- | src/__global.zig | 2 | ||||
-rw-r--r-- | src/build-id | 2 | ||||
-rw-r--r-- | src/linker.lds | 2 | ||||
-rw-r--r-- | test/js/third_party/prisma/package.json | 2 |
9 files changed, 11 insertions, 11 deletions
@@ -40,7 +40,7 @@ NATIVE_OR_OLD_MARCH = -march=nehalem endif MIN_MACOS_VERSION ?= $(DEFAULT_MIN_MACOS_VERSION) -BUN_BASE_VERSION = 0.6 +BUN_BASE_VERSION = 0.7 CI ?= false diff --git a/bench/bundle/package.json b/bench/bundle/package.json index c80d9b81e..25eb08c5b 100644 --- a/bench/bundle/package.json +++ b/bench/bundle/package.json @@ -3,6 +3,6 @@ "module": "index.ts", "type": "module", "devDependencies": { - "bun-types": "^0.5.0" + "bun-types": "^0.7.0" } -}
\ No newline at end of file +} diff --git a/docs/quickstart.md b/docs/quickstart.md index 1a5aa657c..156e1145b 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -64,7 +64,7 @@ Bun can also execute `"scripts"` from your `package.json`. Add the following scr + "start": "bun run index.ts" + }, "devDependencies": { - "bun-types": "^0.4.0" + "bun-types": "^0.7.0" } } ``` diff --git a/examples/react-file-system-router/package.json b/examples/react-file-system-router/package.json index 36e0349c0..65b80060a 100644 --- a/examples/react-file-system-router/package.json +++ b/examples/react-file-system-router/package.json @@ -5,10 +5,10 @@ "devDependencies": { "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", - "bun-types": "^0.4.0" + "bun-types": "^0.7.0" }, "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0" } -}
\ No newline at end of file +} diff --git a/packages/bun-lambda/package.json b/packages/bun-lambda/package.json index b558b15fa..af3ece70b 100644 --- a/packages/bun-lambda/package.json +++ b/packages/bun-lambda/package.json @@ -1,6 +1,6 @@ { "devDependencies": { - "bun-types": "^0.4.0", + "bun-types": "^0.7.0", "jszip": "^3.10.1", "oclif": "^3.6.5", "prettier": "^2.8.2" diff --git a/src/__global.zig b/src/__global.zig index ed0fa08f5..7bcdaeeda 100644 --- a/src/__global.zig +++ b/src/__global.zig @@ -7,7 +7,7 @@ const StringTypes = @import("./string_types.zig"); const Mimalloc = @import("root").bun.Mimalloc; const bun = @import("root").bun; -const BASE_VERSION = "0.6"; +const BASE_VERSION = "0.7"; pub const build_id = std.fmt.parseInt(u64, std.mem.trim(u8, @embedFile("./build-id"), "\n \r\t"), 10) catch unreachable; pub const package_json_version = if (Environment.isDebug) diff --git a/src/build-id b/src/build-id index 60d3b2f4a..573541ac9 100644 --- a/src/build-id +++ b/src/build-id @@ -1 +1 @@ -15 +0 diff --git a/src/linker.lds b/src/linker.lds index aef95b4bc..a47bc080c 100644 --- a/src/linker.lds +++ b/src/linker.lds @@ -1,4 +1,4 @@ -BUN_0.6 { +BUN_0.7 { global: napi*; __cxa_atexit; diff --git a/test/js/third_party/prisma/package.json b/test/js/third_party/prisma/package.json index ccf11e097..7455b963b 100644 --- a/test/js/third_party/prisma/package.json +++ b/test/js/third_party/prisma/package.json @@ -3,7 +3,7 @@ "module": "index.ts", "type": "module", "devDependencies": { - "bun-types": "0.6.12", + "bun-types": "0.7.0", "prisma": "5.0.0" }, "peerDependencies": { |