From b9ef1c608dc8383f2036c8adf5d64a5c40c17ea0 Mon Sep 17 00:00:00 2001 From: Paul Kent Date: Thu, 21 Sep 2017 13:43:44 -0400 Subject: [PATCH] Increase version number, update release notes --- CHANGELOG.md | 7 ++++++- CMakeLists.txt | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a9b17c22..475bf8a40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,14 @@ Notable changes to QMCPACK will be documented in this file. -## Unreleased +## [3.2.0] - 2017-09-21 ### Notes +This release provides a significant speed increase for +many-calculations. A C++11 compiler is now required. It is a +recommended update. + ### QMCPACK updates * Major speedup for calculations using spline wavefunctions via @@ -23,6 +27,7 @@ Notable changes to QMCPACK will be documented in this file. * Improved beta-release of AFQMC code and documentation. * Backflow documentation and optimization tips added. * Correlated sampling VMC drivers reactivated. +* Added carbon graphite performance test similar to CORAL benchmark. * Improvements to CMake and CTest usage. * Build instructions for NERSC, ALCF, and OLCF machines updated. * Latest manual PDF now available at http://docs.qmcpack.org diff --git a/CMakeLists.txt b/CMakeLists.txt index 16178ed01..e0a50cef8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,8 +12,8 @@ ENDIF(COMMAND cmake_policy) # Version ###################################################################### SET(QMCPACK_VERSION_MAJOR 3) -SET(QMCPACK_VERSION_MINOR 1) -SET(QMCPACK_VERSION_PATCH 1) +SET(QMCPACK_VERSION_MINOR 2) +SET(QMCPACK_VERSION_PATCH 0) SET(QMCPACK_VERSION "${QMCPACK_VERSION_MAJOR}.${QMCPACK_VERSION_MINOR}.${QMCPACK_VERSION_PATCH}") ######################################################################