From f5d41e726cd997ba038815e218c48017228a8f0e Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Sun, 23 Sep 2018 14:17:22 -0700 Subject: Version 1.0 --- CHANGELOG.md | 2 +- Makefile | 2 +- fzy.1 | 2 +- src/options.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7903cc8..59df5bd 100644 --- 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 index 85a8993..2d23118 100644 --- 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 index 302b9af..acfb62d 100644 --- 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 index 504e646..3aa3e63 100644 --- 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; -- cgit v1.2.3