gst

painless gist creator
git clone git://edryd.org/gst
Log | Files | Refs | LICENSE

commit c95e928bff3b19b4bc246baea2a0442561c6b134
parent 738b62f8b5178a8d9a60385e0842c677b8624294
Author: Ed van Bruggen <edvb@uw.edu>
Date:   Wed,  1 Apr 2020 21:35:03 -0700

Release v0.1

Diffstat:
.gitignore | 1+
LICENSE | 2+-
config.mk | 2+-
gst.1 | 2+-
gst.c | 2+-
5 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -19,3 +19,4 @@ gst # misc tags config.h +Session.vim diff --git a/LICENSE b/LICENSE @@ -1,6 +1,6 @@ zlib License -Copyright (c) 2017 Ed van Bruggen +Copyright (c) 2017-2020 Ed van Bruggen This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/config.mk b/config.mk @@ -1,5 +1,5 @@ # gst version number -VERSION = 0.0.0 +VERSION = 0.1 # paths PREFIX = /usr/local diff --git a/gst.1 b/gst.1 @@ -1,4 +1,4 @@ -.TH GST 1 "April 2020" "gst 0.0.0" +.TH GST 1 "April 2020" "gst 0.1" .PP .SH NAME gst \- painless gist creator diff --git a/gst.c b/gst.c @@ -208,7 +208,7 @@ main(int argc, char *argv[]) case 'h': usage(0); case 'v': - printf("%s v%s (c) 2017 Ed van Bruggen\n", argv0, VERSION); + printf("%s v%s (c) 2017-2020 Ed van Bruggen\n", argv0, VERSION); return 0; default: usage(1);