Skip to content
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.37.0
v2.38.0
8 changes: 8 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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.38.0 (6 January 2026)
======================================================================

- Allow `min:max` indexing to always succeed if it is an empty selection. (#3362)
- Updated scalar templating in the serializer. (#3355)
- Removed the uses of `forward_as` from the stan repo and adds `if constexpr` where possible. (#3357)
- Updated Pathfinder writer to avoid indexing past vector length. (#3364)

v2.37.0 (2 September 2025)
======================================================================

Expand Down
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.37.0
PROJECT_NUMBER = 2.38.0

# 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 @@ -12,7 +12,7 @@
#endif

#define STAN_MAJOR 2
#define STAN_MINOR 37
#define STAN_MINOR 38
#define STAN_PATCH 0

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 @@ -3,12 +3,12 @@

TEST(Stan, macro) {
EXPECT_EQ(2, STAN_MAJOR);
EXPECT_EQ(37, STAN_MINOR);
EXPECT_EQ(38, STAN_MINOR);
EXPECT_EQ(0, STAN_PATCH);
}

TEST(Stan, version) {
EXPECT_EQ("2", stan::MAJOR_VERSION);
EXPECT_EQ("37", stan::MINOR_VERSION);
EXPECT_EQ("38", stan::MINOR_VERSION);
EXPECT_EQ("0", stan::PATCH_VERSION);
}