From cc60a792d1df5512795833f27f5fc9b344641dd6 Mon Sep 17 00:00:00 2001 From: Ronak Buch Date: Tue, 3 Mar 2020 13:09:24 -0600 Subject: [PATCH] Update release notes and version for 6.10.1 (#2741) --- CHANGES | 10 ++++++++++ CMakeLists.txt | 2 +- src/scripts/configure.ac | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index aaee7d1e2e..7fa2515a37 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,16 @@ This file describes the most significant changes. For more detail, use 'git log' on a clone of the charm repository. +================================================================================ +What's new in Charm++ 6.10.1 +================================================================================ + +This is a minor bug-fix release, with the following changes: + +- Fix verbs layer send completion errors on recent InfiniBand hardware/drivers. + +- Avoid aborting with a segfault when calling CmiAbort in production builds. + ================================================================================ What's new in Charm++ 6.10.0 ================================================================================ diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e362bc850..d9095b2fa8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ # Version 3.4 added CMAKE_C_COMPILER_LAUNCHER and CMAKE_CXX_COMPILER_LAUNCHER cmake_minimum_required(VERSION 3.4) -project(Charm++ LANGUAGES CXX C VERSION 6.10.0) +project(Charm++ LANGUAGES CXX C VERSION 6.10.1) find_package(Threads REQUIRED) find_package(OpenMP) # Do this before Fortran, in case we don't have a Fortran compiler diff --git a/src/scripts/configure.ac b/src/scripts/configure.ac index 2c78cb12a2..27182931bf 100644 --- a/src/scripts/configure.ac +++ b/src/scripts/configure.ac @@ -2,7 +2,7 @@ # Increment the last 2 digits when making an API change # Increase the first three after branching for a release -AC_INIT(Charm++, 61000, [charm@cs.illinois.edu], charm, [http://charm.cs.illinois.edu/]) +AC_INIT(Charm++, 61001, [charm@cs.illinois.edu], charm, [http://charm.cs.illinois.edu/]) AC_CONFIG_SRCDIR(./Makefile)