Browse code

Version 1.0

John Hawthorn authored on 23/09/2018 21:17:22
Showing 4 changed files

... ...
@@ -1,4 +1,4 @@
1
-## 1.0 (Unreleased)
1
+## 1.0 (2018-09-23)
2 2
 
3 3
 Features:
4 4
 
... ...
@@ -1,4 +1,4 @@
1
-VERSION=0.9
1
+VERSION=1.0
2 2
 
3 3
 CPPFLAGS=-DVERSION=\"${VERSION}\" -D_GNU_SOURCE
4 4
 CFLAGS+=-Wall -Wextra -g -std=c99 -O3 -pedantic -Ideps
... ...
@@ -1,4 +1,4 @@
1
-.TH FZY 1 "2017-04-17" "fzy 0.9"
1
+.TH FZY 1 "2018-09-23" "fzy 1.0"
2 2
 .SH NAME
3 3
 fzy \- A fuzzy text selector menu for the terminal.
4 4
 .SH SYNOPSIS
... ...
@@ -55,7 +55,7 @@ void options_parse(options_t *options, int argc, char *argv[]) {
55 55
 	while ((c = getopt_long(argc, argv, "vhse:q:l:t:p:j:", longopts, NULL)) != -1) {
56 56
 		switch (c) {
57 57
 			case 'v':
58
-				printf("%s " VERSION " (c) 2014 John Hawthorn\n", argv[0]);
58
+				printf("%s " VERSION " © 2014-2018 John Hawthorn\n", argv[0]);
59 59
 				exit(EXIT_SUCCESS);
60 60
 			case 's':
61 61
 				options->show_scores = 1;