From 39ee6b6a7f193983606fcd5fea088f5957729428 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Mon, 2 May 2022 10:34:43 -0400 Subject: [PATCH 1/2] step version strings for the next patch release --- doc/lammps.1 | 2 +- src/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/lammps.1 b/doc/lammps.1 index b8011d0cb0..8ce751844a 100644 --- a/doc/lammps.1 +++ b/doc/lammps.1 @@ -1,4 +1,4 @@ -.TH LAMMPS "1" "24 March 2022" "2022-3-24" +.TH LAMMPS "1" "4 May 2022" "2022-5-4" .SH NAME .B LAMMPS \- Molecular Dynamics Simulator. Version 24 March 2022 diff --git a/src/version.h b/src/version.h index a39af7601e..9de4ec5d9f 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define LAMMPS_VERSION "24 Mar 2022" +#define LAMMPS_VERSION "4 May 2022" From 2aa1c6975f6c1abba1f36312a511ec014b3c4560 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Wed, 4 May 2022 19:09:19 -0400 Subject: [PATCH 2/2] fix typo --- unittest/commands/test_simple_commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittest/commands/test_simple_commands.cpp b/unittest/commands/test_simple_commands.cpp index 513f04b745..c58efcd9ea 100644 --- a/unittest/commands/test_simple_commands.cpp +++ b/unittest/commands/test_simple_commands.cpp @@ -252,7 +252,7 @@ TEST_F(SimpleCommandsTest, ResetTimestep) TEST_FAILURE(".*ERROR: Illegal reset_timestep .*", command("reset_timestep");); TEST_FAILURE(".*ERROR: Unknown reset_timestep option 10.*", command("reset_timestep 10 10");); TEST_FAILURE(".*ERROR: Illegal reset_timestep .*", command("reset_timestep 10 time");); - TEST_FAILURE(".*ERROR: Expected floating .**", command("reset_timestep 10 time xxx");); + TEST_FAILURE(".*ERROR: Expected floating .*", command("reset_timestep 10 time xxx");); TEST_FAILURE(".*ERROR: Expected integer .*", command("reset_timestep xxx");); }