Skip to content

Commit

Permalink
Bump version minor number.
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Feb 11, 2021
1 parent b676b52 commit 56f08e6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion macher.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* See the file License.txt included with the source code distribution.
*
*/
#define MACHER_VERSION "1.1"

#include <stdio.h>
#include <stdlib.h>
Expand Down Expand Up @@ -727,7 +728,7 @@ int main(int argc, char **argv)
usage();
break;
case VERSION:
printf("This is version 1.0 of macher.\n");
printf("This is version %s of macher.\n", MACHER_VERSION);
exit(0);
case APPEND:
if (argc != optind + 3) {
Expand Down

0 comments on commit 56f08e6

Please sign in to comment.