diff --git a/CHANGES b/CHANGES index ff1b45f84e..6cae9fc66f 100644 --- a/CHANGES +++ b/CHANGES @@ -3,7 +3,24 @@ Following is a brief summary of changes made in each release of TiledArray. -- 14-Feb-2018: 0.7.0 +- day-month-year: 1.0.0-alpha.3 + - + +- 07-June-2019: 1.0.0-alpha.2 + - modernized CMake handling of CUDA, CMake 3.10 is now required + - improved CMake handling of MADNESS arguments, e.g. gperftools + - Pmaps no longer have to store O(N) data, and no existing Pmap does + +- 09-May-2019: 1.0.0-alpha.1 + - first-class support for CUDA; requires Umpire [github.com/LLNL/Umpire] and cuTT [github.com/ValeevGroup/cutt + fork of github.com/ap-hynninen/cutt], both can be installed automatically + - better usability with BTAS tensors and hierarchical tiles (i.e. tensors of tensors) + - disabled automatic conversion of multiply expressions into scalars + - updates to support C++17 (but only C++14 is required) + - resolved issues 145, 157 + - bump to CMake 3.8 + +- 15-Feb-2018: 0.7.0 - MADNESS bump to 0.11.0, requires C++14 as the result - added interface to latest Elemental ('El') - resolved issues 96, 100, 101, 102, 104, 106, 107, 108, 110, 124 diff --git a/CMakeLists.txt b/CMakeLists.txt index afb5a3bb12..ed1610c26a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ enable_language(CXX) set(TILEDARRAY_MAJOR_VERSION 1) set(TILEDARRAY_MINOR_VERSION 0) set(TILEDARRAY_MICRO_VERSION 0) -set(TILEDARRAY_BUILDID alpha.1) +set(TILEDARRAY_BUILDID alpha.2) set(TILEDARRAY_VERSION "${TILEDARRAY_MAJOR_VERSION}.${TILEDARRAY_MINOR_VERSION}.${TILEDARRAY_MICRO_VERSION}") if (TILEDARRAY_BUILDID) set(TILEDARRAY_VERSION "${TILEDARRAY_VERSION}-${TILEDARRAY_BUILDID}")