Skip to content

Commit

Permalink
Release v2023.06.0 (#830)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbeckingsale authored Jul 6, 2023
1 parent d0d00fb commit 1e5ef60
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include(CMakePackageConfigHelpers)

project(Umpire
LANGUAGES CXX C
VERSION 2022.10.0)
VERSION 2023.06.0)

cmake_minimum_required(VERSION 3.14)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="https://cdn.rawgit.com/LLNL/Umpire/develop/share/umpire/logo/umpire-logo.png" width="128" valign="middle" alt="Umpire"/> Umpire v2022.10.0
# <img src="https://cdn.rawgit.com/LLNL/Umpire/develop/share/umpire/logo/umpire-logo.png" width="128" valign="middle" alt="Umpire"/> Umpire v2023.06.0

[![Travis Build Status](https://travis-ci.com/LLNL/Umpire.svg?branch=develop)](https://travis-ci.com/LLNL/Umpire)
[![Azure Pipelines Build Status](https://dev.azure.com/davidbeckingsale/Umpire/_apis/build/status/LLNL.Umpire?branchName=develop)](https://dev.azure.com/davidbeckingsale/Umpire/_build/latest?definitionId=1&branchName=develop)
Expand Down
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Umpire Version 2022.10.0
Umpire Version 2023.06.0

Copyright (c) 2016-23, Lawrence Livermore National Security, LLC.
Produced at the Lawrence Livermore National Laboratory.
Expand Down
20 changes: 20 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# v2023.06.0

## New Features

- Add `_hwm` variant of pool heuristic functions. These reallocate to the high watermark value after a coalescing, and can reduce memory overhead.

## Improvements

- Support 2023 OneAPI release.

- Add HIP support to the DeviceAllocator.

## Bug Fixes

- Prefix fmt macros to avoid conflicts with other libraries including fmt.

- Replace deprecated random_shuffle usage with shuffle for c++17.

- Make exported include directories relative to install prefix.

# v2022.10.0

## New Features
Expand Down
2 changes: 1 addition & 1 deletion blt
Submodule blt updated 233 files
4 changes: 2 additions & 2 deletions docs/sphinx/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ author = u'David Beckingsale'
# built documents.
#
# The short X.Y version.
version = u'2022.10'
version = u'2023.06'
# The full version, including alpha/beta/rc tags.
release = u'2022.10.0'
release = u'2023.06.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion scripts/make_release_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
##############################################################################

TAR_CMD=gtar
VERSION=2022.10.0
VERSION=2023.06.0

git archive --prefix=umpire-${VERSION}/ -o umpire-${VERSION}.tar HEAD 2> /dev/null

Expand Down

0 comments on commit 1e5ef60

Please sign in to comment.