fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit bccdb957aab8e2be522f2f6eaa696d0c838aed49 parent 1c8c32176c372e4c8b9ce6aeccfe8c5e6f0b3b49 Author: John Hawthorn <john@hawthorn.email> Date: Sun, 23 Sep 2018 14:17:22 -0700 Version 1.0 Diffstat:
| M | CHANGELOG.md | | | 2 | +- |
| M | Makefile | | | 2 | +- |
| M | fzy.1 | | | 2 | +- |
| M | src/options.c | | | 2 | +- |
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 1.0 (Unreleased) +## 1.0 (2018-09-23) Features: diff --git a/Makefile b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.9 +VERSION=1.0 CPPFLAGS=-DVERSION=\"${VERSION}\" -D_GNU_SOURCE CFLAGS+=-Wall -Wextra -g -std=c99 -O3 -pedantic -Ideps diff --git a/fzy.1 b/fzy.1 @@ -1,4 +1,4 @@ -.TH FZY 1 "2017-04-17" "fzy 0.9" +.TH FZY 1 "2018-09-23" "fzy 1.0" .SH NAME fzy \- A fuzzy text selector menu for the terminal. .SH SYNOPSIS diff --git a/src/options.c b/src/options.c @@ -55,7 +55,7 @@ void options_parse(options_t *options, int argc, char *argv[]) { while ((c = getopt_long(argc, argv, "vhse:q:l:t:p:j:", longopts, NULL)) != -1) { switch (c) { case 'v': - printf("%s " VERSION " (c) 2014 John Hawthorn\n", argv[0]); + printf("%s " VERSION " © 2014-2018 John Hawthorn\n", argv[0]); exit(EXIT_SUCCESS); case 's': options->show_scores = 1;