diff options
-rw-r--r-- | Dockerfile | 2 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | build-id | 2 | ||||
-rw-r--r-- | src/__global.zig | 4 | ||||
-rw-r--r-- | src/linker.lds | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/Dockerfile b/Dockerfile index 4cf3e48c3..bb2fbe62d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ ARG WEBKIT_URL="https://github.com/oven-sh/WebKit/releases/download/$WEBKIT_TAG/ ARG ZIG_URL="https://github.com/oven-sh/zig/releases/download/$ZIG_TAG/zig-linux-$BUILDARCH.zip" ARG GIT_SHA="" -ARG BUN_BASE_VERSION=0.2 +ARG BUN_BASE_VERSION=0.3 FROM bitnami/minideb:bullseye as bun-base @@ -35,7 +35,7 @@ NATIVE_OR_OLD_MARCH = -march=westmere endif MIN_MACOS_VERSION ?= $(DEFAULT_MIN_MACOS_VERSION) -BUN_BASE_VERSION = 0.2 +BUN_BASE_VERSION = 0.3 AR= @@ -884,7 +884,7 @@ MIMALLOC_OVERRIDE_FLAG ?= bump: - expr 0.2.0 + 1 > build-id + expr 0.3.0 + 1 > build-id .PHONY: identifier-cache identifier-cache: @@ -1 +1 @@ -3
\ No newline at end of file +0
\ No newline at end of file diff --git a/src/__global.zig b/src/__global.zig index b95de724e..8b78e3a47 100644 --- a/src/__global.zig +++ b/src/__global.zig @@ -5,7 +5,7 @@ const Output = @import("output.zig"); const use_mimalloc = @import("./global.zig").use_mimalloc; const StringTypes = @import("./string_types.zig"); -const BASE_VERSION = "0.2"; +const BASE_VERSION = "0.3"; 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) @@ -47,7 +47,7 @@ pub inline fn getStartTime() i128 { pub const version: @import("./install/semver.zig").Version = .{ .major = 0, - .minor = 2, + .minor = 3, .patch = build_id, }; diff --git a/src/linker.lds b/src/linker.lds index f6d9c1e8c..1e1b834b9 100644 --- a/src/linker.lds +++ b/src/linker.lds @@ -1,4 +1,4 @@ -BUN_0.2 { +BUN_0.3 { global: napi*; __cxa_atexit; |