Skip to content

Commit

Permalink
Version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jhawthorn committed Sep 23, 2018
1 parent 5cf38d6 commit f5d41e7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.0 (Unreleased)
## 1.0 (2018-09-23)

Features:

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion fzy.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f5d41e7

Please sign in to comment.