Skip to content

Commit

Permalink
Release version 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
focus-editor committed Mar 21, 2024
1 parent 1ca3496 commit 6d7fc31
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 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.2-%", trim(revision));
return "0.3.2-dev";
}
RELEASE_DATE :: #run -> string {
current_time := to_calendar(current_time_consensus());
return calendar_to_string(current_time);
}
// VERSION :: #run -> string {
// result, revision := run_command("git", "rev-parse", "--short", "HEAD", capture_and_return_output = true);
// if revision return sprint("0.3.3-%", trim(revision));
// return "0.3.3-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.2";
// RELEASE_DATE :: "21 February 2024";
VERSION :: "0.3.3";
RELEASE_DATE :: "21 March 2024";

#run,stallable build();

Expand Down

0 comments on commit 6d7fc31

Please sign in to comment.