Skip to content

Commit

Permalink
Update notes and versions for patch release 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aurianer committed Oct 1, 2020
1 parent a1de195 commit 137d94b
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ endif()
# ##############################################################################
set(HPX_VERSION_MAJOR 1)
set(HPX_VERSION_MINOR 5)
set(HPX_VERSION_SUBMINOR 0)
set(HPX_VERSION_DATE 20200902)
set(HPX_VERSION_SUBMINOR 1)
set(HPX_VERSION_DATE 20200930)
set(HPX_VERSION_TAG "")

set(HPX_VERSION
Expand Down
3 changes: 3 additions & 0 deletions cmake/packaging/rpm/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Wed Sep 30 2020 STE||AR Group <[email protected]> 1.5.1
- HPX Release 1.5.1 (https://hpx-docs.stellar-group.org/tags/1.5.1/html/releases/whats_new_1_5_1.html)

* Wed Sep 02 2020 STE||AR Group <[email protected]> 1.5.0
- HPX Release 1.5.0 (https://hpx-docs.stellar-group.org/tags/1.5.0/html/releases/whats_new_1_5_0.html)

Expand Down
5 changes: 3 additions & 2 deletions docs/sphinx/contributing/release_procedure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ are completed to avoid confusion.

#. Write release notes in ``docs/sphinx/releases/whats_new_$VERSION.rst``. Keep
adding merged PRs and closed issues to this until just before the release is
made. Use ``tools/generate_pr_issue_list.sh`` to generate the lists. Add the
new release notes to the table of contents in ``docs/sphinx/releases.rst``.
made. Use ``tools/generate_pr_issue_list.sh`` to generate the lists.

#. Add the new release notes to the table of contents in ``docs/sphinx/releases.rst``.

#. Build the docs, and proof-read them. Update any documentation that may have
changed, and correct any typos. Pay special attention to:
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/manual/building_hpx.rst
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ How to install |hpx| on Unix variants

.. code-block:: bash
cmake -DBOOST_ROOT=~/packages/boost -DHWLOC_ROOT=/packages/hwloc -DCMAKE_INSTALL_PREFIX=~/packages/hpx ~/downloads/hpx_1.5.0
cmake -DBOOST_ROOT=~/packages/boost -DHWLOC_ROOT=/packages/hwloc -DCMAKE_INSTALL_PREFIX=~/packages/hpx ~/downloads/hpx_1.5.1
* Invoke GNU make. If you are on a machine with multiple cores, add the -jN flag
to your make invocation, where N is the number of parallel processes |hpx|
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ It is also recommended that you check out the latest stable tag:

.. code-block:: sh
git checkout 1.5.0
git checkout 1.5.1
|hpx| dependencies
==================
Expand Down
1 change: 1 addition & 0 deletions docs/sphinx/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Releases
.. toctree::
:maxdepth: 1

releases/whats_new_1_5_1
releases/whats_new_1_5_0
releases/whats_new_1_4_1
releases/whats_new_1_4_0
Expand Down
44 changes: 44 additions & 0 deletions docs/sphinx/releases/whats_new_1_5_1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
..
Copyright (C) 2020 ETH Zurich
SPDX-License-Identifier: BSL-1.0
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

.. _hpx_1_5_1:

===========================
|hpx| V1.5.1 (Sep 30, 2020)
===========================

General changes
===============

This is a patch release. It contains the following changes:

* Remove restriction on suspending runtime with multiple localities, users are
now responsible for synchronizing work between localities before suspending.
* Fixes several compilation problems and warnings.
* Adds notes in the documentation explaining how to cite HPX.

Closed issues
=============

* :hpx-issue:`4971` - Parallel sort fails to compile with C++20
* :hpx-issue:`4950` - Build with `HPX_WITH_PARCELPORT_ACTION_COUNTERS` `ON` fails
* :hpx-issue:`4940` - Codespell report for "HPX" (on fossies.org)
* :hpx-issue:`4937` - Allow suspension of runtime for multiple localities

Closed pull requests
====================

* :hpx-pr:`4982` - Add page about citing HPX to documentation
* :hpx-pr:`4981` - Adding the missing include
* :hpx-pr:`4974` - Remove leftover format export hack
* :hpx-pr:`4972` - Removing use of get_temporary_buffer and return_temporary_buffer
* :hpx-pr:`4963` - Renaming files to avoid warnings from the vs build system
* :hpx-pr:`4951` - Fixing build if HPX_WITH_PARCELPORT_ACTION_COUNTERS=On
* :hpx-pr:`4946` - Allow suspension on multiple localities
* :hpx-pr:`4944` - Fix typos reported by fossies codespell report
* :hpx-pr:`4941` - Adding some explanation to README about how to cite HPX
* :hpx-pr:`4939` - Small changes

0 comments on commit 137d94b

Please sign in to comment.