aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ashcon Partovi <ashcon@partovi.net> 2023-10-17 13:22:34 -0700
committerGravatar Ashcon Partovi <ashcon@partovi.net> 2023-10-17 13:22:34 -0700
commitac36f5c278197026b2a442d8ac0f18da6d77f9a1 (patch)
treed0462fa2930c584bfef67164aec7fec1e27a993e
parentbbc2e96090d3cdc4ccfd5e4456a8d2a236c84c44 (diff)
downloadbun-ac36f5c278197026b2a442d8ac0f18da6d77f9a1.tar.gz
bun-ac36f5c278197026b2a442d8ac0f18da6d77f9a1.tar.zst
bun-ac36f5c278197026b2a442d8ac0f18da6d77f9a1.zip
Remove ancient changelog
-rw-r--r--src/CHANGELOG.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md
deleted file mode 100644
index 6c97c01e5..000000000
--- a/src/CHANGELOG.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Upcoming release
-
-- [Bun.js] Enable `SharedArrayBuffer` and Atomics
-
-# 0.41.0
-
-- [bun run] `bun run ./file.js` now supports running JavaScript, TS, TSX, and JSX files with Bun.js. Before, it would say `"error: Missing script"`. If there is a `#!` shebang at the start of the file, the file will not be run with Bun.js. You can still use Node & Deno with `bun run`, that works the same as before.
-- [Bun.js] Top-level await
-- [Bun.js] `performance.now()` is implemented
-- [Bun.js] `fetch()` is fixed
-- [.env loader] Pass through process environment variable values verbatim instead of treating them similarly to .env files. `.env` needs special parsing because quotes are optional, values are potentially nested, and it's whitespace sensitive. This probably also improves the performance of loading process environment variables, but that was already pretty quick so it probably doesn't matter.