From 3169b5a63fc95420c9ff89ea404d1a9ce3875b10 Mon Sep 17 00:00:00 2001 From: Nicusor Serban Date: Mon, 15 Jan 2024 18:10:31 +0100 Subject: [PATCH] release/v2.34.0: updating version numbers --- .github/ISSUE_TEMPLATE.md | 2 +- RELEASE-NOTES.txt | 18 ++++++++++++++++++ makefile | 2 +- src/cmdstan/version.hpp | 4 ++-- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 9fb906fd20..e90d0a12f7 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -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 diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 075086b3cd..599b8e90cd 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -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) ====================================================================== diff --git a/makefile b/makefile index 0e5b353e4b..8ec058dd32 100644 --- a/makefile +++ b/makefile @@ -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 diff --git a/src/cmdstan/version.hpp b/src/cmdstan/version.hpp index 6415bbdb6a..7e42f2b48a 100644 --- a/src/cmdstan/version.hpp +++ b/src/cmdstan/version.hpp @@ -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 {