Skip to content

Commit

Permalink
Bun v1.1.36 [release]
Browse files Browse the repository at this point in the history
  • Loading branch information
Electroid committed Nov 19, 2024
1 parent fc94db1 commit 46c750f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .buildkite/ci.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
getChangedFiles,
getCommit,
getCommitMessage,
getEnv,
getLastSuccessfulBuild,
getMainBranch,
getTargetBranch,
Expand Down Expand Up @@ -784,7 +785,10 @@ async function main() {

console.log("Checking if build is a named release...");
let buildRelease;
{
if (/^(1|true|on|yes)$/i.test(getEnv("RELEASE"))) {
console.log(" - Yes, because RELEASE environment variable is set");
buildRelease = true;
} else {
const message = getCommitMessage();
const match = /\[(release|release build|build release)\]/i.exec(message);
if (match) {
Expand Down
2 changes: 1 addition & 1 deletion LATEST
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.34
1.1.36
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "bun",
"version": "1.1.35",
"version": "1.1.36",
"workspaces": [
"./packages/bun-types"
],
Expand Down

0 comments on commit 46c750f

Please sign in to comment.