Skip to content

Commit 5fd79f8

Browse files
Merge pull request #2660 from stan-dev/update_version
Update the version to 4.3.0.
2 parents ef0cd15 + 1731adc commit 5fd79f8

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

.github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ If this is a **feature request**, show what you expect to happen if the feature
2525

2626

2727
#### Current Version:
28-
v4.2.1
28+
v4.3.0

RELEASE-NOTES.txt

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
Stan Math Library Release Notes
22

3+
======================================================================
4+
v4.3.0
5+
======================================================================
6+
7+
- Changed constants to `static constexpr` for efficiency, added Euler's Gamma constant. (#2478)
8+
- Added `lmultiply()` that parallels `multiply_log()` so that the language doesn't have to rename. (#2596)
9+
- Cleaned up tests to include <CL/opencl.hpp> instead of <CL/cl2.hpp>. (#2610)
10+
- Added missing implementations of function signatures that shadow of math function signatures in the `std::` namespace. (#2612)
11+
- Fixed the bug where 2x2 matrix exponential function outputs NaN for matrices with large eigenvalues. (#2616)
12+
- Added compiler flag `-D_BOOST_LGAMMA` to allow users to force use of Boost `lgamma` implementation. (#2618)
13+
- Added more informative error messages for ODE solvers. (#2620)
14+
- Forceed linker to respect rpath set at compile time. (#2627)
15+
- Upgraded Sundials to 6.0.0. (#2629)
16+
- Added `norm1()` and `norm2()`. (#2636)
17+
- Added missing `von_mises_cdf_log` and `von_mises_ccdf_log` signatures. (#2640)
18+
- Refactored the DAE solver.(#2644)
19+
- Added the inverse of the complementary error function - `inv_erfc()`. (#2645)
20+
- Updated member functions for accessing tangents in scalar `fvar` types. (#2652)
21+
- Added support for the new matrix type for GLM functions. (#2655)
22+
323
======================================================================
424
v4.2.1 (21 October 2021)
525
======================================================================

doxygen/doxygen.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "Stan Math Library"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 4.2.1
41+
PROJECT_NUMBER = 4.3.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

stan/math/version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
#endif
1313

1414
#define STAN_MATH_MAJOR 4
15-
#define STAN_MATH_MINOR 2
16-
#define STAN_MATH_PATCH 1
15+
#define STAN_MATH_MINOR 3
16+
#define STAN_MATH_PATCH 0
1717

1818
namespace stan {
1919
namespace math {

0 commit comments

Comments
 (0)