File tree Expand file tree Collapse file tree 5 files changed +13
-5
lines changed
Expand file tree Collapse file tree 5 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ Describe what you expect the output to be. Knowing the correct behavior is also
2424Provide any additional information here.
2525
2626#### Current Version:
27- v2.37 .0
27+ v2.38 .0
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ Note: these are the release notes for the stan-dev/stan repository.
55Further changes may arise at the interface level (stan-dev/{rstan,
66pystan, cmdstan}) and math library level (stan-dev/math).
77
8+ v2.38.0 (6 January 2026)
9+ ======================================================================
10+
11+ - Allow `min:max` indexing to always succeed if it is an empty selection. (#3362)
12+ - Updated scalar templating in the serializer. (#3355)
13+ - Removed the uses of `forward_as` from the stan repo and adds `if constexpr` where possible. (#3357)
14+ - Updated Pathfinder writer to avoid indexing past vector length. (#3364)
15+
816v2.37.0 (2 September 2025)
917======================================================================
1018
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ PROJECT_NAME = "Stan"
3838# could be handy for archiving the generated documentation or if some version
3939# control system is used.
4040
41- PROJECT_NUMBER = 2.37 .0
41+ PROJECT_NUMBER = 2.38 .0
4242
4343# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444# for a project that appears at the top of each page and should give viewer a
Original file line number Diff line number Diff line change 1212#endif
1313
1414#define STAN_MAJOR 2
15- #define STAN_MINOR 37
15+ #define STAN_MINOR 38
1616#define STAN_PATCH 0
1717
1818namespace stan {
Original file line number Diff line number Diff line change 33
44TEST (Stan, macro) {
55 EXPECT_EQ (2 , STAN_MAJOR);
6- EXPECT_EQ (37 , STAN_MINOR);
6+ EXPECT_EQ (38 , STAN_MINOR);
77 EXPECT_EQ (0 , STAN_PATCH);
88}
99
1010TEST (Stan, version) {
1111 EXPECT_EQ (" 2" , stan::MAJOR_VERSION);
12- EXPECT_EQ (" 37 " , stan::MINOR_VERSION);
12+ EXPECT_EQ (" 38 " , stan::MINOR_VERSION);
1313 EXPECT_EQ (" 0" , stan::PATCH_VERSION);
1414}
You can’t perform that action at this time.
0 commit comments