Skip to content

Commit

Permalink
Merge pull request #3073 from stan-dev/update_to_2_28
Browse files Browse the repository at this point in the history
Update version numbers to 2.28
  • Loading branch information
serban-nicusor-toptal authored Oct 22, 2021
2 parents 842fbbd + 7567ea5 commit 45b97cb
Show file tree
Hide file tree
Showing 5 changed files with 10 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.28.0
v2.28.1
5 changes: 5 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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.28.1 (21 October 2021)
======================================================================

- Updated to Stan Math 4.2.1

v2.28.0 (5 October 2021)
======================================================================

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.28.0
PROJECT_NUMBER = 2.28.1

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

#define STAN_MAJOR 2
#define STAN_MINOR 28
#define STAN_PATCH 0
#define STAN_PATCH 1

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 @@ -4,11 +4,11 @@
TEST(Stan, macro) {
EXPECT_EQ(2, STAN_MAJOR);
EXPECT_EQ(28, STAN_MINOR);
EXPECT_EQ(0, STAN_PATCH);
EXPECT_EQ(1, STAN_PATCH);
}

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

0 comments on commit 45b97cb

Please sign in to comment.