Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blblack committed Mar 3, 2024
1 parent 9ee63b1 commit 856d6d0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
1.3.0 - 2024-03-03
* Coredumps are disabled at startup via setrlimit()
* Process address space locked into memory at startup via
mlockall(), if running as root.
* Various keys are now stored in local stack vars, rather than
sodium_malloc allocations (the above changes bring most of the same
benefits with less complexity).
* Zig port is now pure Zig (no longer links libc or libsodium), but
there's still a few bits in lsys.zig and getopt.zig that should be
upstreamed to std in some form.

1.2.0 - 2024-02-27
* TL;DR - No user-visible functional changes, but some log outputs
changed and a ton of internal refactoring/cleanup happened
Expand Down
2 changes: 1 addition & 1 deletion src/tofurkey.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ static void usage(void)
" and then exit. Normal mode is to remain running and rotate keys on\n"
" timer intervals forever.\n"
"\n"
"This is tofurkey v1.2.0\n"
"This is tofurkey v1.3.0\n"
"tofurkey is a tool for distributed sync of Linux TCP Fastopen key rotations\n"
"More info is available at https://github.com/blblack/tofurkey\n",
def_autokey_path, def_autokey_path, STR(DEF_IVAL), STR(MIN_IVAL), STR(MAX_IVAL)
Expand Down
2 changes: 1 addition & 1 deletion src/tofurkey.zig
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ const cfg_s = struct {
\\ and then exit. Normal mode is to remain running and rotate keys on
\\ timer intervals forever.
\\
\\This is tofurkey v1.2.0 (EXPERIMENTAL Zig variant)
\\This is tofurkey v1.3.0 (EXPERIMENTAL Zig variant)
\\tofurkey is a tool for distributed sync of Linux TCP Fastopen key rotations
\\More info is available at https://github.com/blblack/tofurkey
\\
Expand Down
2 changes: 1 addition & 1 deletion tofurkey.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH tofurkey 8 "Jan 2024" "v1.2.0"
.TH tofurkey 8 "Mar 2024" "v1.3.0"
.SH NAME
tofurkey \- Distributed sync for Linux TCP Fastopen key rotations
.SH SYNOPSIS
Expand Down

0 comments on commit 856d6d0

Please sign in to comment.