aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-12-21 14:39:23 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-12-21 14:57:04 -0800
commitf40d6bd94d0d95fb95a0c1cff0783758efa86dff (patch)
treee35a67081547ef8b630c853a530c02e89a0b771d
parent4f7d06500c073c3ac35c2fc6bdbd0ce90e03f36f (diff)
downloadbun-f40d6bd94d0d95fb95a0c1cff0783758efa86dff.tar.gz
bun-f40d6bd94d0d95fb95a0c1cff0783758efa86dff.tar.zst
bun-f40d6bd94d0d95fb95a0c1cff0783758efa86dff.zip
Bun v0.4.0
-rw-r--r--Dockerfile2
-rw-r--r--Makefile4
-rw-r--r--build-id2
-rw-r--r--src/__global.zig4
-rw-r--r--src/linker.lds2
5 files changed, 7 insertions, 7 deletions
diff --git a/Dockerfile b/Dockerfile
index f5f16056b..dce2766f1 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.3
+ARG BUN_BASE_VERSION=0.4
FROM bitnami/minideb:bullseye as bun-base
diff --git a/Makefile b/Makefile
index e2078e8d3..f23f0ad01 100644
--- a/Makefile
+++ b/Makefile
@@ -39,7 +39,7 @@ NATIVE_OR_OLD_MARCH = -march=westmere
endif
MIN_MACOS_VERSION ?= $(DEFAULT_MIN_MACOS_VERSION)
-BUN_BASE_VERSION = 0.3
+BUN_BASE_VERSION = 0.4
AR=
@@ -910,7 +910,7 @@ MIMALLOC_OVERRIDE_FLAG ?=
bump:
- expr 0.3.0 + 1 > build-id
+ expr 0.4.0 + 1 > build-id
.PHONY: identifier-cache
identifier-cache:
diff --git a/build-id b/build-id
index 56a6051ca..c22708346 100644
--- a/build-id
+++ b/build-id
@@ -1 +1 @@
-1 \ No newline at end of file
+0 \ No newline at end of file
diff --git a/src/__global.zig b/src/__global.zig
index d284c0f3a..22b676403 100644
--- a/src/__global.zig
+++ b/src/__global.zig
@@ -6,7 +6,7 @@ const use_mimalloc = @import("bun").use_mimalloc;
const StringTypes = @import("./string_types.zig");
const Mimalloc = @import("bun").Mimalloc;
-const BASE_VERSION = "0.3";
+const BASE_VERSION = "0.4";
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)
@@ -48,7 +48,7 @@ pub inline fn getStartTime() i128 {
pub const version: @import("./install/semver.zig").Version = .{
.major = 0,
- .minor = 3,
+ .minor = 4,
.patch = build_id,
};
diff --git a/src/linker.lds b/src/linker.lds
index 1e1b834b9..e47e9b605 100644
--- a/src/linker.lds
+++ b/src/linker.lds
@@ -1,4 +1,4 @@
-BUN_0.3 {
+BUN_0.4 {
global:
napi*;
__cxa_atexit;