Skip to content

Commit 57af149

Browse files
Update version numbers (#3391)
1 parent 49925e4 commit 57af149

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.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.38.0
27+
v2.39.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.38.0
41+
PROJECT_NUMBER = 2.39.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 38
15+
#define STAN_MINOR 39
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(38, STAN_MINOR);
6+
EXPECT_EQ(39, STAN_MINOR);
77
EXPECT_EQ(0, STAN_PATCH);
88
}
99

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

0 commit comments

Comments
 (0)