From f5bfef7c25ec682960de248ab9925347ee936efb Mon Sep 17 00:00:00 2001 From: Nicusor Serban Date: Tue, 23 Jan 2024 13:41:41 +0100 Subject: [PATCH] release/v2.34.1: updating version numbers --- .github/ISSUE_TEMPLATE.md | 2 +- RELEASE-NOTES.txt | 6 ++++++ src/doxygen/doxygen.cfg | 2 +- src/stan/version.hpp | 2 +- src/test/unit/version_test.cpp | 4 ++-- 5 files changed, 11 insertions(+), 5 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 fee4c304fd..302667a1f4 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -5,6 +5,12 @@ Note: these are the release notes for the stan-dev/stan repository. Further changes may arise at the interface level (stan-dev/{rstan, pystan, cmdstan}) and math library level (stan-dev/math). +v2.34.1 (23 January 2024) +====================================================================== + +- Fixed a Windows-specific issue with std::regex in JSON file validation (#3251) +- Added a missing include of `cstdint` (#3255) + v2.34.0 (16 January 2024) ====================================================================== diff --git a/src/doxygen/doxygen.cfg b/src/doxygen/doxygen.cfg index a92cbfef95..68763e2c63 100644 --- a/src/doxygen/doxygen.cfg +++ b/src/doxygen/doxygen.cfg @@ -38,7 +38,7 @@ PROJECT_NAME = "Stan" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 2.34.0 +PROJECT_NUMBER = 2.34.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/src/stan/version.hpp b/src/stan/version.hpp index 0ad4ad6176..65e3bd7116 100644 --- a/src/stan/version.hpp +++ b/src/stan/version.hpp @@ -13,7 +13,7 @@ #define STAN_MAJOR 2 #define STAN_MINOR 34 -#define STAN_PATCH 0 +#define STAN_PATCH 1 namespace stan { diff --git a/src/test/unit/version_test.cpp b/src/test/unit/version_test.cpp index 78a0f79c71..dbcf6e1bca 100644 --- a/src/test/unit/version_test.cpp +++ b/src/test/unit/version_test.cpp @@ -4,11 +4,11 @@ TEST(Stan, macro) { EXPECT_EQ(2, STAN_MAJOR); EXPECT_EQ(34, STAN_MINOR); - EXPECT_EQ(0, STAN_PATCH); + EXPECT_EQ(1, STAN_PATCH); } TEST(Stan, version) { EXPECT_EQ("2", stan::MAJOR_VERSION); EXPECT_EQ("34", stan::MINOR_VERSION); - EXPECT_EQ("0", stan::PATCH_VERSION); + EXPECT_EQ("1", stan::PATCH_VERSION); }