From 5906b6d41e4d1949de4acf1ddd7954ef3855bb2e Mon Sep 17 00:00:00 2001 From: Nicusor Serban Date: Tue, 23 Jan 2024 13:51:14 +0100 Subject: [PATCH] release/v2.34.1: updating version numbers --- .github/ISSUE_TEMPLATE.md | 2 +- RELEASE-NOTES.txt | 7 +++++++ makefile | 2 +- src/cmdstan/version.hpp | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index e90d0a12f7..8251d82562 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -24,4 +24,4 @@ Describe what you expect the output to be. Knowing the correct behavior is also Provide any additional information here. #### Current Version: -v2.34.0 +v2.34.1 diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 599b8e90cd..77aea468f2 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -1,6 +1,13 @@ CMDSTAN RELEASE NOTES ====================================================================== +v2.34.1 (23 January 2024) +====================================================================== + +- Fixed an indexing error which could lead to crashes (#1239) +- Fixed an issue where output was swallowed by the `log_prob` method if an error occurred (#1235) +- Fixed an issue where floating point arguments would be echoed back to the user with insufficient precision (#1243) + v2.34.0 (16 January 2024) ====================================================================== diff --git a/makefile b/makefile index 8ec058dd32..8b8db577bb 100644 --- a/makefile +++ b/makefile @@ -149,7 +149,7 @@ include make/program include make/tests include make/command -CMDSTAN_VERSION := 2.34.0 +CMDSTAN_VERSION := 2.34.1 ifeq ($(OS),Windows_NT) HELP_MAKE=mingw32-make diff --git a/src/cmdstan/version.hpp b/src/cmdstan/version.hpp index 7e42f2b48a..575343238b 100644 --- a/src/cmdstan/version.hpp +++ b/src/cmdstan/version.hpp @@ -13,7 +13,7 @@ #define CMDSTAN_MAJOR 2 #define CMDSTAN_MINOR 34 -#define CMDSTAN_PATCH 0 +#define CMDSTAN_PATCH 1 namespace cmdstan {