Skip to content

Commit

Permalink
release/v2.32.0: updating version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicusor Serban committed Apr 20, 2023
1 parent 54ea119 commit 7760933
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
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.31.0
v2.32.0
16 changes: 16 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ 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.32.0 (20 April 2023)
======================================================================

- Extended `get_dims` and `get_param_names` in model_base with flags for whether to include transformed parameters and generated quantities. (#3139)
- Fixed an issue where initialization would still retry many times even if a fixed initialization was provided. (#3139)
- Cleaned up newlines in Laplace service logging. (#3153)
- make: use SUNDIALS_TARGETS instead of LIBSUNDIALS. (#3162)
- Updated JSON var context to handle nested structures (tuples). (#3165)
- Always discard at least 1 entry in new RNGs. (#3168)
- Relaxed requirements for 0-sized data objects in JSON. (#3170)
- Deleted unused io/cmd_line.hpp. (#3172)
- Standalone GQ: Output NaNs when exception is caught. (#3173)
- Cleaned up dimension and name logic in random_var_context. (#3174)
- Removed old/unused IO code. (#3177)
- Made deserializer's map members const. (#3178)

v2.31.0 (21 November 2022)
======================================================================
- RapidJSON library is now a part of Stan (previously part of CmdStan) (#3143)
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.31.0
PROJECT_NUMBER = 2.32.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 31
#define STAN_MINOR 32
#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(31, STAN_MINOR);
EXPECT_EQ(32, STAN_MINOR);
EXPECT_EQ(0, STAN_PATCH);
}

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

0 comments on commit 7760933

Please sign in to comment.