aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--RELEASE-NOTES.md6
-rw-r--r--VERSION2
-rw-r--r--src/version.h6
4 files changed, 15 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 4444a8e..1376443 100644
--- a/Makefile
+++ b/Makefile
@@ -149,6 +149,8 @@ profile: CPPFLAGS += -pg
release: CPPFLAGS += -DNDEBUG -O3 $(GCC_FLAGS) $(GSL_INCLUDE_PATH) -isystem$(EIGEN_INCLUDE_PATH) -Icontrib/catch-1.9.7 -Isrc
+static: CPPFLAGS += -DNDEBUG -O3 $(GCC_FLAGS) $(GSL_INCLUDE_PATH) -isystem$(EIGEN_INCLUDE_PATH) -Icontrib/catch-1.9.7 -Isrc
+
ifeq ($(SYS), WIN)
CPPFLAGS += -Duint="unsigned int" -D__CRT__NO_INLINE -D__STRING="__STRINGIFY" -DWINDOWS -DWITH_GSLCBLAS=1
@@ -170,7 +172,7 @@ ifdef WITH_GSLCBLAS
LIBS += -lgslcblas
endif
ifdef WITH_GFORTRAN
- LIBS += -lgfortran
+ LIBS += -lgfortran -lquadmath
endif
.PHONY: all test
@@ -203,6 +205,8 @@ all: release
release: $(OUTPUT)
+static: $(OUTPUT)
+
debug: $(OUTPUT)
./src/version.h: ./VERSION
diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md
index b2213fa..9000949 100644
--- a/RELEASE-NOTES.md
+++ b/RELEASE-NOTES.md
@@ -4,6 +4,12 @@ see
and
[commits](https://github.com/genetics-statistics/GEMMA/commits/master).
+## ChangeLog v0.98.1 (2018/12/10)
+
+Bug fix release
+
+* Fixes regression on Plink analysis with missing data (thank you @voichek)
+
## ChangeLog v0.98 (2018/09/28)
With the v0.98 release GEMMA has stabilized, is faster than ever, and
diff --git a/VERSION b/VERSION
index 0f6db3d..359d7a7 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.98
+0.98.1
diff --git a/src/version.h b/src/version.h
index 3a4feb7..cfb3ba9 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,5 +1,5 @@
// version.h generated by GEMMA scripts/gen_version_info.sh
-#define GEMMA_VERSION "0.98"
-#define GEMMA_DATE "2018-09-28"
+#define GEMMA_VERSION "0.98.1"
+#define GEMMA_DATE "2018-12-10"
#define GEMMA_YEAR "2018"
-#define GEMMA_PROFILE "/gnu/store/79fw0qqlgpk7n8vll6lnlc4ahahn4gbw-profile"
+#define GEMMA_PROFILE ""