Skip to content

Commit

Permalink
Release Focus 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
focus-editor committed May 4, 2024
1 parent 1ed1430 commit d58497a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
14 changes: 12 additions & 2 deletions FOCUS-CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<current-file-path>:<line>` to clipboard. Useful for setting breakpoints.
Expand All @@ -36,8 +48,6 @@
+ CRLF is now stripped from build output before displaying


# RELEASES ==================================================================

# Version 0.3.4

+ New features:
Expand Down
26 changes: 13 additions & 13 deletions first.jai
Original file line number Diff line number Diff line change
@@ -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();

Expand Down

0 comments on commit d58497a

Please sign in to comment.