Skip to content

Commit c0e8c5c

Browse files
committed
Bump version: 0.2.4 → 0.3.0
1 parent 5a2d39d commit c0e8c5c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.4
2+
current_version = 0.3.0
33
commit = True
44
tag = True
55

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ScaLAPACKe: C headers and wrappers for scaLAPACK
22

3-
Lastest version: [v0.2.4](https://github.com/pierre-24/scalapacke/releases/tag/v0.2.4), corresponding to [scaLAPACK v2.2.0](https://github.com/Reference-ScaLAPACK/scalapack/releases/tag/v2.2.0).
3+
Lastest version: [v0.3.0](https://github.com/pierre-24/scalapacke/releases/tag/v0.3.0), corresponding to [scaLAPACK v2.2.0](https://github.com/Reference-ScaLAPACK/scalapack/releases/tag/v2.2.0).
44

55
Like [LAPACKe](https://netlib.org/lapack/lapacke.html), it provides a set of headers and wrappers in order to easily use [scaLAPACK](https://www.netlib.org/scalapack/) (and its components, [PBLAS](https://netlib.org/scalapack/pblas_qref.html) and [BLACS](https://netlib.org/blacs/)) in C.
66

docs/dev/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Just grab the wrap file corresponding to the version you want to use ...
4444
mkdir -p subprojects
4545

4646
# download wrap file
47-
wget https://github.com/pierre-24/scalapacke/releases/download/v0.2.4/scalapacke_v0.2.4.wrap -O subprojects/scalapacke.wrap
47+
wget https://github.com/pierre-24/scalapacke/releases/download/v0.3.0/scalapacke_v0.3.0.wrap -O subprojects/scalapacke.wrap
4848
```
4949

5050
... and add something like this in your `meson.build`:

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('scalapacke', 'c',
2-
version : '0.2.4',
2+
version : '0.3.0',
33
default_options : ['warning_level=3'],
44
)
55

scalapacke_files_create/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.2.4'
1+
__version__ = '0.3.0'
22

33
SCALAPACK_REPO_URL = 'https://github.com/Reference-ScaLAPACK/scalapack/'
44
SELF_REPO_URL = 'https://github.com/pierre-24/scalapack-c-headers/'

0 commit comments

Comments
 (0)