Skip to content

Commit 13b0c5c

Browse files
author
Nicusor Serban
committed
release/v2.36.0: updating version numbers
1 parent e92ace6 commit 13b0c5c

File tree

4 files changed

+5
-5
lines changed

4 files changed

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

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)