Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
also fills in version information in main.c automatically
  • Loading branch information
satta committed Dec 10, 2015
1 parent 1930a2a commit 5ad4882
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.1.1
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([snp-sites], [1])
AC_INIT([snp-sites], m4_esyscmd([tr -d '\n' < VERSION]))
AM_INIT_AUTOMAKE([foreign subdir-objects])
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_HEADERS([config.h])
Expand All @@ -7,7 +7,7 @@ AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_HOST

PKG_CHECK_MODULES([CHECK],[check >= 0.8.2],[have_check="yes"],
AC_MSG_WARN(['Check' unit testing framework not found. It would be impossible to run unit tests!"])
AC_MSG_WARN(["'Check' unit testing framework not found. It would be impossible to run unit tests!"])
[have_check="no"])

AC_CHECK_HEADERS([zlib.h math.h])
Expand Down
3 changes: 2 additions & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
#include <ctype.h>
#include <unistd.h>
#include "snp-sites.h"
#include "config.h"

#define PROGRAM_NAME "snp-sites"
#define PROGRAM_VERSION "2.1.0"
#define PROGRAM_VERSION PACKAGE_VERSION

static void print_usage()
{
Expand Down

0 comments on commit 5ad4882

Please sign in to comment.