From 57da9d177f553335362d29c7723152c11a2d839e Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Mon, 21 Oct 2019 04:02:08 -0400 Subject: [PATCH 1/3] step version string for next patch release --- doc/lammps.1 | 2 +- doc/src/Manual.txt | 4 ++-- src/version.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/lammps.1 b/doc/lammps.1 index f332a8a549..533a97b76a 100644 --- a/doc/lammps.1 +++ b/doc/lammps.1 @@ -1,4 +1,4 @@ -.TH LAMMPS "19 September 2019" "2019-09-19" +.TH LAMMPS "23 October 2019" "2019-10-23" .SH NAME .B LAMMPS \- Molecular Dynamics Simulator. diff --git a/doc/src/Manual.txt b/doc/src/Manual.txt index 95f1ffe4bb..72b3d609ea 100644 --- a/doc/src/Manual.txt +++ b/doc/src/Manual.txt @@ -1,7 +1,7 @@ LAMMPS Users Manual - + @@ -21,7 +21,7 @@ :line LAMMPS Documentation :c,h1 -19 Sep 2019 version :c,h2 +23 Oct 2019 version :c,h2 "What is a LAMMPS version?"_Manual_version.html diff --git a/src/version.h b/src/version.h index d9dcc6de0f..d26a284337 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define LAMMPS_VERSION "19 Sep 2019" +#define LAMMPS_VERSION "23 Oct 2019" From cac57ec7e00776fbcab4cefa7ece050c771bc111 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Tue, 22 Oct 2019 16:48:39 +0200 Subject: [PATCH 2/3] Move release date ahead by another week to 30 October 2019 --- doc/lammps.1 | 2 +- doc/src/Manual.txt | 4 ++-- src/version.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/lammps.1 b/doc/lammps.1 index 533a97b76a..ec31d19b74 100644 --- a/doc/lammps.1 +++ b/doc/lammps.1 @@ -1,4 +1,4 @@ -.TH LAMMPS "23 October 2019" "2019-10-23" +.TH LAMMPS "30 October 2019" "2019-10-30" .SH NAME .B LAMMPS \- Molecular Dynamics Simulator. diff --git a/doc/src/Manual.txt b/doc/src/Manual.txt index 72b3d609ea..041a481547 100644 --- a/doc/src/Manual.txt +++ b/doc/src/Manual.txt @@ -1,7 +1,7 @@ LAMMPS Users Manual - + @@ -21,7 +21,7 @@ :line LAMMPS Documentation :c,h1 -23 Oct 2019 version :c,h2 +30 Oct 2019 version :c,h2 "What is a LAMMPS version?"_Manual_version.html diff --git a/src/version.h b/src/version.h index d26a284337..9471c2b951 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define LAMMPS_VERSION "23 Oct 2019" +#define LAMMPS_VERSION "30 Oct 2019" From 98fc1deb6a3e94aaaf64c433f53df66677e119d6 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Mon, 28 Oct 2019 14:03:49 -0400 Subject: [PATCH 3/3] fix typo in C++11 non-compliance pre-processor error message --- src/lmptype.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lmptype.h b/src/lmptype.h index b220538190..c1902e7ebe 100644 --- a/src/lmptype.h +++ b/src/lmptype.h @@ -31,7 +31,7 @@ // C++11 check #ifndef LAMMPS_CXX98 #if __cplusplus <= 199711L - #error LAMMPS is planning to transition to C++11. Do disable this error please use a C++11 compliant compiler, enable C++11 (or later) compliance, or define LAMMPS_CXX98 in your makefile + #error LAMMPS is planning to transition to C++11. To disable this error please use a C++11 compliant compiler, enable C++11 (or later) compliance, or define LAMMPS_CXX98 in your makefile #endif #endif