Skip to content

Commit

Permalink
Release 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Köhler committed Jan 17, 2022
1 parent 463f587 commit da71cb8
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
3.1.1 (January 17, 2022)
-----------------------
- Fix wrong so-version for libflexiblas.so

3.1.0 (January 16, 2022)
-----------------------
- Closes Github #19, added LINK_OPENMP option
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ authors:
given-names: "Jens"
orcid: "https://orcid.org/0000-0001-5567-9637"
title: "FlexiBLAS - A BLAS and LAPACK wrapper library with runtime exchangable backends"
version: 3.1.0
version: 3.1.1
doi: 10.5281/zenodo.798186
date-released: 2022-01-16
date-released: 2022-01-17
url: "https://github.com/mpimd-csc/flexiblas"
license: GPL-3.0-or-later
keywords:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
INCLUDE(libcscutils/CMakeModules/CheckPolicy.cmake)
CheckPolicy(CMP0048 NEW)

PROJECT(FlexiBLAS LANGUAGES C Fortran VERSION 3.1.0)
PROJECT(FlexiBLAS LANGUAGES C Fortran VERSION 3.1.1)
ENABLE_LANGUAGE(Fortran)
cmake_minimum_required(VERSION 3.3.0)

Expand Down
4 changes: 2 additions & 2 deletions CODE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: FlexiBLAS - A BLAS and LAPACK wrapper library with runtime exchangable backends
shortname: flexiblas
version: 3.1.0
release-date: 2022-01-16
version: 3.1.1
release-date: 2022-01-17
id: 10.5281/zenodo.798186
id-type: doi
author: Martin Köhler, Jens Saak
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FlexiBLAS - A BLAS and LAPACK wrapper library with runtime exchangeable backends
================================================================================

**Version 3.1.0** https://doi.org/10.5281/zenodo.3949804
**Version 3.1.1** 10.5281/zenodo.798186

**Project Website:** https://www.mpi-magdeburg.mpg.de/projects/flexiblas

Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
flexiblas (3.1.1) focal; urgency=medium

* Bugfix release for 3.1.0

-- Martin Koehler <[email protected]> Mon, 17 Jan 2021 12:00:00 +0100

flexiblas (3.1.0) focal; urgency=medium

* See CHANGELOG
Expand Down
2 changes: 1 addition & 1 deletion flexiblas.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ libdir=@libdir@
includedir=${prefix}/include/${flexiblasname}
Name: flexiblas
Description: BLAS wrapper library mimicing Netlib Reference but providing any installed BLAS Implementation
Version: 3.1.0
Version: 3.1.1
URL: http://www.mpi-magdeburg.mpg.de/mpcsc/software/FlexiBLAS/
Libs: -L${libdir} -l${flexiblasname}
Libs.private: -lm
Expand Down
2 changes: 1 addition & 1 deletion flexiblas_api.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ libdir=@libdir@
includedir=${prefix}/include/${flexiblasname}
Name: flexiblas_api
Description: BLAS wrapper library mimicing Netlib Reference but providing any installed BLAS Implementation(Non-BLAS API Only)
Version: 3.1.0
Version: 3.1.1
URL: http://www.mpi-magdeburg.mpg.de/mpcsc/software/FlexiBLAS/
Libs: -L${libdir} -l${flexiblasname}_api
Libs.private: -lm
Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ TARGET_LINK_LIBRARIES(flexiblas_mgmt ${LIBS} cscutils )
add_library(flexiblas_api SHARED ${FLEXIBLAS_API_SRC} ) # $<TARGET_OBJECTS:cscutils_src>)
TARGET_LINK_LIBRARIES(flexiblas_api ${DL_LIB} cscutils c)

set(GENERIC_LIB_VERSION "3.0")
set(GENERIC_LIB_SOVERSION "3")
set(GENERIC_LIB_VERSION "${FLEXIBLAS_VERSION_MAJOR}.${FLEXIBLAS_VERSION_MINOR}")
set(GENERIC_LIB_SOVERSION "${FLEXIBLAS_VERSION_MAJOR}")


add_executable(flexiblas-config flexiblas-config.c)
Expand Down
4 changes: 2 additions & 2 deletions tools/flexiblas-octave/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Name: flexiblas
Version: 3.1.0
Date: 2022-01-16
Version: 3.1.1
Date: 2022-01-17
Author: Martin Koehler <[email protected]>
Maintainer: Martin Koehler <[email protected]>
Title: FlexiBLAS API Interface for Octave
Expand Down

0 comments on commit da71cb8

Please sign in to comment.