Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparation for 0.7.2 release #1249

Merged
merged 3 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## DLA-Future 0.7.2

### Bug fixes

- Changed C ScaLAPACK API indexing convention to 1-based for partial eigenspectrum. (#1248)
RMeli marked this conversation as resolved.
Show resolved Hide resolved

## DLA-Future 0.7.1

### Bug fixes
Expand Down
6 changes: 3 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cff-version: 1.2.0
title: DLA-Future 0.7.1
title: DLA-Future 0.7.2
repository-code: https://github.com/eth-cscs/DLA-Future
message: >-
If you use this software, please cite it using the
Expand Down Expand Up @@ -54,5 +54,5 @@ keywords:
- mpi
license: BSD-3-Clause
license-url: https://opensource.org/license/bsd-3-clause
version: 0.7.1
date-released: '2024-12-18'
version: 0.7.2
date-released: '2024-12-19'
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

cmake_minimum_required(VERSION 3.22)

project(DLAF VERSION 0.7.1)
project(DLAF VERSION 0.7.2)

# ---------------------------------------------------------------------------
# CMake configurations
Expand Down
1 change: 1 addition & 0 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## API documentation

- [Documentation of `master` branch](https://eth-cscs.github.io/DLA-Future/master/)
- [Documentation of `v0.7.2`](https://eth-cscs.github.io/DLA-Future/v0.7.2/)
- [Documentation of `v0.7.1`](https://eth-cscs.github.io/DLA-Future/v0.7.1/)
- [Documentation of `v0.7.0`](https://eth-cscs.github.io/DLA-Future/v0.7.0/)
- [Documentation of `v0.6.0`](https://eth-cscs.github.io/DLA-Future/v0.6.0/)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ target_link_libraries(<your_target> PRIVATE DLAF::DLAF)
### Documentation

- [Documentation of `master` branch](https://eth-cscs.github.io/DLA-Future/master/)
- [Documentation of `v0.7.1`](https://eth-cscs.github.io/DLA-Future/v0.7.1/)
- [Documentation of `v0.7.2`](https://eth-cscs.github.io/DLA-Future/v0.7.2/)

See [DOCUMENTATION.md](DOCUMENTATION.md) for the documentation of older versions, or for the instructions to build it.

Expand Down
Loading