Skip to content

Commit

Permalink
release/v2.34.0: updating version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicusor Serban committed Jan 15, 2024
1 parent fa475b5 commit 3169b5a
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 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.33.1
v2.34.0
18 changes: 18 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
CMDSTAN RELEASE NOTES
======================================================================

v2.34.0 (16 January 2024)
======================================================================

- Add option `adaptation save_metric=1` to save adapted metric in separate JSON file with elements "stepsize", "metric_type" and "inv_metric" (#1203, #1229)
- New argument under `output save_cmdstan_config`. If set to `1`, creates `output_config.json` which contains the argument tree and extra information (equivalent to the CSV file header) (#1204)
- Adds `psis_resample` and `calculate_lp` as options for Pathfinder (#1234)
- Removed usages of boost::lexical_cast (#1205)
- Resolved various compiler warnings (#1206)
- Fixed a linking issue when building `stansummary` (#1209)
- Fixed an issue where the default values of some arguments were not printed in sufficient precision (#1215)
- Improved the error users see if they are missing the stan or stan_math submodules (#1217)
- Improved the dependency detection in the build system (#1219)
- Added a warning when more PSIS draws are requested than total number of draws from single-pathfinders (#1221)
- Disallowed pathfinder when the model has no parameters. (#1221)
- Fixed a typo in `make help-dev`. (#1225)
- Fixed several edge cases and unexpected behaviors in the way output filenames were generated for multi-chain sampling and multi-path Pathfinder (#1228)
- Added a `version.hpp` header (#1231)

v2.33.1 (13 September 2023)
======================================================================

Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ include make/program
include make/tests
include make/command

CMDSTAN_VERSION := 2.33.1
CMDSTAN_VERSION := 2.34.0

ifeq ($(OS),Windows_NT)
HELP_MAKE=mingw32-make
Expand Down
4 changes: 2 additions & 2 deletions src/cmdstan/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#endif

#define CMDSTAN_MAJOR 2
#define CMDSTAN_MINOR 33
#define CMDSTAN_PATCH 1
#define CMDSTAN_MINOR 34
#define CMDSTAN_PATCH 0

namespace cmdstan {

Expand Down

0 comments on commit 3169b5a

Please sign in to comment.