From 5abb4a128c2a4e241899db9eed8af85f21712596 Mon Sep 17 00:00:00 2001 From: Ryan Mendivil Date: Mon, 19 May 2014 21:22:44 -0800 Subject: [PATCH] Release v0.4.0 --- src/redpile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redpile.h b/src/redpile.h index 4ba8d86..4d19d0a 100644 --- a/src/redpile.h +++ b/src/redpile.h @@ -27,7 +27,7 @@ #include #include -#define REDPILE_VERSION "0.3.0" +#define REDPILE_VERSION "0.4.0" #define ERROR(MESSAGE) do { fprintf(stderr, MESSAGE); exit(EXIT_FAILURE); } while(0) #define ERROR_IF(CONDITION, MESSAGE) if (CONDITION) { ERROR(MESSAGE); }