Skip to content

Commit f5d41e7

Browse files
committed
Version 1.0
1 parent 5cf38d6 commit f5d41e7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 1.0 (Unreleased)
1+
## 1.0 (2018-09-23)
22

33
Features:
44

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=0.9
1+
VERSION=1.0
22

33
CPPFLAGS=-DVERSION=\"${VERSION}\" -D_GNU_SOURCE
44
CFLAGS+=-Wall -Wextra -g -std=c99 -O3 -pedantic -Ideps

fzy.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH FZY 1 "2017-04-17" "fzy 0.9"
1+
.TH FZY 1 "2018-09-23" "fzy 1.0"
22
.SH NAME
33
fzy \- A fuzzy text selector menu for the terminal.
44
.SH SYNOPSIS

src/options.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void options_parse(options_t *options, int argc, char *argv[]) {
5555
while ((c = getopt_long(argc, argv, "vhse:q:l:t:p:j:", longopts, NULL)) != -1) {
5656
switch (c) {
5757
case 'v':
58-
printf("%s " VERSION " (c) 2014 John Hawthorn\n", argv[0]);
58+
printf("%s " VERSION " © 2014-2018 John Hawthorn\n", argv[0]);
5959
exit(EXIT_SUCCESS);
6060
case 's':
6161
options->show_scores = 1;

0 commit comments

Comments
 (0)