From d58497ab97a35edddff5da3b2f68fee3ab61c258 Mon Sep 17 00:00:00 2001 From: Ivan Ivanov Date: Sun, 5 May 2024 07:28:58 +1200 Subject: [PATCH] Release Focus 0.3.5 --- FOCUS-CHANGELOG.txt | 14 ++++++++++++-- first.jai | 26 +++++++++++++------------- 2 files changed, 25 insertions(+), 15 deletions(-) diff --git a/FOCUS-CHANGELOG.txt b/FOCUS-CHANGELOG.txt index fafd83a7a..79bd8888a 100644 --- a/FOCUS-CHANGELOG.txt +++ b/FOCUS-CHANGELOG.txt @@ -17,6 +17,18 @@ # Main Git Branch ++ New features: + + ... ++ Bug fixes: + + ... ++ Other changes: + + ... + + +# RELEASES ================================================================== + +# Version 0.3.5 + + New features: + New option: `insert_final_newline_on_save`. Set to `true` to auto-add missing final newlines to saved files. + New command: `copy_current_line_info`. Copies a string `:` to clipboard. Useful for setting breakpoints. @@ -36,8 +48,6 @@ + CRLF is now stripped from build output before displaying -# RELEASES ================================================================== - # Version 0.3.4 + New features: diff --git a/first.jai b/first.jai index d9b8b25fc..f8f09104d 100644 --- a/first.jai +++ b/first.jai @@ -1,16 +1,16 @@ -VERSION :: #run -> string { - result, revision := run_command("git", "rev-parse", "--short", "HEAD", capture_and_return_output = true); - if revision return sprint("0.3.4-%", trim(revision)); - return "0.3.4-dev"; -} -RELEASE_DATE :: #run -> string { - current_time := to_calendar(current_time_consensus()); - return calendar_to_string(current_time); -} - -// // NOTE: Uncomment when releasing, comment out when not releasing -// VERSION :: "0.3.4-3"; -// RELEASE_DATE :: "10 April 2024"; +// VERSION :: #run -> string { +// result, revision := run_command("git", "rev-parse", "--short", "HEAD", capture_and_return_output = true); +// if revision return sprint("0.3.5-%", trim(revision)); +// return "0.3.5-dev"; +// } +// RELEASE_DATE :: #run -> string { +// current_time := to_calendar(current_time_consensus()); +// return calendar_to_string(current_time); +// } + +// NOTE: Uncomment when releasing, comment out when not releasing +VERSION :: "0.3.5"; +RELEASE_DATE :: "5 May 2024"; #run,stallable build();