Skip to content

Commit 91d0285

Browse files
Release/v2.36.0 (#3321)
* release/v2.36.0: updating version numbers
1 parent f4fb7cb commit 91d0285

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
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.35.0
27+
v2.36.0

RELEASE-NOTES.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ 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.36.0 (10 December 2024)
9+
======================================================================
10+
11+
- Added de/serialization for the `stochastic_row_matrix` and `stochastic_column_matrix` types. (#3298, #3304)
12+
- Added de/serialization for the `sum_to_zero_vector` type. (#3308)
13+
- Relaxed restrictions on HMC to allow running when a model has no parameters. (#3071, #3303)
14+
- Updated `rvalue()` functions that use `multi_index` to return an Eigen expression of multi indexing instead of eagerly creating a new matrix from the indices. (#3250)
15+
- Improved error messages when user-specified initializations fail. (#3291)
16+
- Fixed progress output formatting being inconsistent for the non-adaptive samplers. (#3296)
17+
- Improved parsing of Stan CSV files to allow for getting MCMC sample from fixed_param and samples with saved warmup draws and to be able to correctly get ADVI sample. (#3311)
18+
- Improved parsing of Stan CSV files when they contain nan or infinite values. (#3318)
19+
- Added a new `stan::mcmc::chainset` object, exposing split-Rhat, split-ESS and Monte Carlo standard error diagnostics. This replaces the `chains<>` object. (#3312, #3313)
20+
- Fixed a header include order issue that caused compilation with `-DSTAN_MODEL_FVAR_VAR` to fail for certain models. (#3294)
21+
- Removed support for adding makefile variables in `~/.config/stan/make.local`. Use the `make/local` file in the Stan directory instead. (#3295)
22+
823
v2.35.0 (3 June 2024)
924
======================================================================
1025

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.35.0
41+
PROJECT_NUMBER = 2.36.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 35
15+
#define STAN_MINOR 36
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(35, STAN_MINOR);
6+
EXPECT_EQ(36, STAN_MINOR);
77
EXPECT_EQ(0, STAN_PATCH);
88
}
99

1010
TEST(Stan, version) {
1111
EXPECT_EQ("2", stan::MAJOR_VERSION);
12-
EXPECT_EQ("35", stan::MINOR_VERSION);
12+
EXPECT_EQ("36", stan::MINOR_VERSION);
1313
EXPECT_EQ("0", stan::PATCH_VERSION);
1414
}

0 commit comments

Comments
 (0)