Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v2.34.1 #3257

Merged
merged 2 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 6 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
======================================================================

Expand Down
2 changes: 1 addition & 1 deletion lib/stan_math
Submodule stan_math updated 39 files
+1 −1 .github/ISSUE_TEMPLATE.md
+7 −0 RELEASE-NOTES.txt
+1 −1 benchmarks/benchmark.py
+1 −1 doxygen/doxygen.cfg
+5 −1 makefile
+1 −1 runChecks.py
+2 −3 runTests.py
+3 −0 stan/math/prim/meta.hpp
+40 −0 stan/math/prim/meta/child_type.hpp
+20 −0 stan/math/prim/meta/contains_fvar.hpp
+38 −0 stan/math/prim/meta/scalar_type_pre.hpp
+5 −12 stan/math/prim/prob/inv_wishart_cholesky_lpdf.hpp
+3 −5 stan/math/prim/prob/inv_wishart_cholesky_rng.hpp
+3 −2 stan/math/prim/prob/lkj_corr_cholesky_lpdf.hpp
+4 −1 stan/math/prim/prob/multi_gp_cholesky_lpdf.hpp
+2 −2 stan/math/prim/prob/multi_normal_cholesky_lpdf.hpp
+1 −0 stan/math/prim/prob/multi_normal_cholesky_rng.hpp
+8 −13 stan/math/prim/prob/wishart_cholesky_lpdf.hpp
+1 −3 stan/math/prim/prob/wishart_cholesky_rng.hpp
+10 −0 stan/math/rev/functor/partials_propagator.hpp
+1 −1 stan/math/version.hpp
+1 −1 test/generate_expression_tests.py
+1 −1 test/prob/getDependencies.py
+11 −0 test/unit/math/fwd/meta/child_type_test.cpp
+13 −0 test/unit/math/fwd/meta/contains_fvar_test.cpp
+12 −0 test/unit/math/mix/meta/child_type_test.cpp
+16 −0 test/unit/math/mix/meta/contains_fvar_test.cpp
+27 −23 test/unit/math/mix/prob/inv_wishart_cholesky_test.cpp
+27 −23 test/unit/math/mix/prob/wishart_cholesky_test.cpp
+1 −1 test/unit/math/opencl/rev/multi_normal_cholesky_lpdf_test.cpp
+9 −0 test/unit/math/prim/meta/child_type_test.cpp
+13 −0 test/unit/math/prim/meta/contains_fvar_test.cpp
+8 −6 test/unit/math/prim/prob/inv_wishart_cholesky_rng_test.cpp
+1 −1 test/unit/math/prim/prob/inv_wishart_cholesky_test.cpp
+1 −1 test/unit/math/prim/prob/wishart_cholesky_rng_test.cpp
+1 −1 test/unit/math/prim/prob/wishart_cholesky_test.cpp
+10 −0 test/unit/math/rev/meta/child_type_test.cpp
+1 −1 test/varmat_compatibility.py
+2 −2 test/varmat_compatibility_summary.py
2 changes: 1 addition & 1 deletion src/doxygen/doxygen.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/stan/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

#define STAN_MAJOR 2
#define STAN_MINOR 34
#define STAN_PATCH 0
#define STAN_PATCH 1

namespace stan {

Expand Down
4 changes: 2 additions & 2 deletions src/test/unit/version_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}