diff options
-rw-r--r-- | Dockerfile | 2 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | src/__global.zig | 2 | ||||
-rw-r--r-- | src/build-id | 2 | ||||
-rw-r--r-- | src/linker.lds | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile index 2243e2790..c568db5ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ ARG ZIG_FILENAME=${ZIG_FOLDERNAME}.tar.xz ARG WEBKIT_URL="https://github.com/oven-sh/WebKit/releases/download/$WEBKIT_TAG/${WEBKIT_BASENAME}.tar.gz" ARG ZIG_URL="https://ziglang.org/builds/${ZIG_FILENAME}" ARG GIT_SHA="" -ARG BUN_BASE_VERSION=0.7 +ARG BUN_BASE_VERSION=0.8 FROM bitnami/minideb:bullseye as bun-base @@ -38,7 +38,7 @@ NATIVE_OR_OLD_MARCH = -march=nehalem endif MIN_MACOS_VERSION ?= $(DEFAULT_MIN_MACOS_VERSION) -BUN_BASE_VERSION = 0.7 +BUN_BASE_VERSION = 0.8 CI ?= false diff --git a/src/__global.zig b/src/__global.zig index f64728721..675da4dea 100644 --- a/src/__global.zig +++ b/src/__global.zig @@ -14,7 +14,7 @@ pub const version: if (Environment.isWasm) else @import("./install/semver.zig").Version = .{ .major = 0, - .minor = 7, + .minor = 8, .patch = build_id, }; diff --git a/src/build-id b/src/build-id index b8626c4cf..c22708346 100644 --- a/src/build-id +++ b/src/build-id @@ -1 +1 @@ -4 +0
\ No newline at end of file diff --git a/src/linker.lds b/src/linker.lds index f04f62297..582b9ed23 100644 --- a/src/linker.lds +++ b/src/linker.lds @@ -1,4 +1,4 @@ -BUN_0.7 { +BUN_0.8 { global: napi*; node_api_*; |