summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2018-09-23 14:17:22 -0700
committerJohn Hawthorn <john@hawthorn.email>2018-09-23 15:05:55 -0700
commitf5d41e726cd997ba038815e218c48017228a8f0e (patch)
tree3fc1cf1945b29942142adc2191240c4ad8716e43
parent5cf38d6d9494e38e007b14973366239ce637a6ae (diff)
Version 1.0
-rw-r--r--CHANGELOG.md2
-rw-r--r--Makefile2
-rw-r--r--fzy.12
-rw-r--r--src/options.c2
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;