Skip to content

Commit ce8127e

Browse files
release/v2.38.0: updating version numbers (#3369)
1 parent 8bef291 commit ce8127e

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Describe what you expect the output to be. Knowing the correct behavior is also
2424
Provide any additional information here.
2525

2626
#### Current Version:
27-
v2.37.0
27+
v2.38.0

RELEASE-NOTES.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ Note: these are the release notes for the stan-dev/stan repository.
55
Further changes may arise at the interface level (stan-dev/{rstan,
66
pystan, 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+
816
v2.37.0 (2 September 2025)
917
======================================================================
1018

src/doxygen/doxygen.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/stan/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#endif
1313

1414
#define STAN_MAJOR 2
15-
#define STAN_MINOR 37
15+
#define STAN_MINOR 38
1616
#define STAN_PATCH 0
1717

1818
namespace stan {

src/test/unit/version_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
TEST(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

1010
TEST(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
}

0 commit comments

Comments
 (0)