From c2e60922adcc6483c9bc597890d62ca1ae8e5a60 Mon Sep 17 00:00:00 2001 From: Nicusor Serban Date: Wed, 2 Mar 2022 13:11:21 +0100 Subject: [PATCH] release/v4.3.1: updating version numbers --- .github/ISSUE_TEMPLATE.md | 2 +- RELEASE-NOTES.txt | 8 +++++++- doxygen/doxygen.cfg | 2 +- stan/math/version.hpp | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 32352077017..e3a39ad439b 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -25,4 +25,4 @@ If this is a **feature request**, show what you expect to happen if the feature #### Current Version: -v4.3.0 +v4.3.1 diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 34175716563..3d5c7ddf5d5 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -1,7 +1,13 @@ Stan Math Library Release Notes ====================================================================== -v4.3.0 +v4.3.1 (2 March 2022) +====================================================================== + +- Fixed a bug with to_matrix(row_vector) and to_matrix(vector) that cause compile-time issues while the result was not stored in a temporary variable. + +====================================================================== +v4.3.0 (14 February 2022) ====================================================================== - Changed constants to `static constexpr` for efficiency, added Euler's Gamma constant. (#2478) diff --git a/doxygen/doxygen.cfg b/doxygen/doxygen.cfg index d87ee4e8751..788e4d17756 100644 --- a/doxygen/doxygen.cfg +++ b/doxygen/doxygen.cfg @@ -38,7 +38,7 @@ PROJECT_NAME = "Stan Math Library" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 4.3.0 +PROJECT_NUMBER = 4.3.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/stan/math/version.hpp b/stan/math/version.hpp index c0d944c4580..9ffb8b39e6e 100644 --- a/stan/math/version.hpp +++ b/stan/math/version.hpp @@ -13,7 +13,7 @@ #define STAN_MATH_MAJOR 4 #define STAN_MATH_MINOR 3 -#define STAN_MATH_PATCH 0 +#define STAN_MATH_PATCH 1 namespace stan { namespace math {