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 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile index ce4fa8cb0..3a1829ae6 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.4 +ARG BUN_BASE_VERSION=0.5 FROM bitnami/minideb:bullseye as bun-base @@ -39,7 +39,7 @@ NATIVE_OR_OLD_MARCH = -march=westmere endif MIN_MACOS_VERSION ?= $(DEFAULT_MIN_MACOS_VERSION) -BUN_BASE_VERSION = 0.4 +BUN_BASE_VERSION = 0.5 AR= diff --git a/src/__global.zig b/src/__global.zig index 6bf87cdef..e2914a1bc 100644 --- a/src/__global.zig +++ b/src/__global.zig @@ -7,7 +7,7 @@ const StringTypes = @import("./string_types.zig"); const Mimalloc = @import("bun").Mimalloc; const bun = @import("bun"); -const BASE_VERSION = "0.4"; +const BASE_VERSION = "0.5"; 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 56a6051ca..c22708346 100644 --- a/src/build-id +++ b/src/build-id @@ -1 +1 @@ -1
\ No newline at end of file +0
\ No newline at end of file |