datefmt

format unix timestamps over stdin
git clone git://git.jb55.com/datefmt
Log | Files | Refs | README | LICENSE

commit 7f91f2b3c0ec25657a2c7505f62f1d7cb1308e9d
parent c9217ffd55ee82febb2b5d537aa0e63c15a10a16
Author: William Casarin <jb55@jb55.com>
Date:   Thu,  5 Nov 2020 11:40:19 -0800

Release 0.1.1

Diffstat:
Mdatefmt.c | 2+-
Mdefault.nix | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/datefmt.c b/datefmt.c @@ -5,7 +5,7 @@ #include <time.h> #include <string.h> -#define VERSION "0.1" +#define VERSION "0.1.1" enum state { BEGIN, diff --git a/default.nix b/default.nix @@ -2,7 +2,7 @@ with pkgs; stdenv.mkDerivation { pname = "datefmt"; - version = "0.1"; + version = "0.1.1"; makeFlags = "PREFIX=$(out)";