Skip to content

Commit 25b09e8

Browse files
authored
Merge pull request #148 from Dirreke/bump-version
release 0.10.14
2 parents d03a784 + ebd6bcd commit 25b09e8

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# CHANGELOG
22

3-
[Unreleased](https://github.com/blas-lapack-rs/openblas-src/compare/openblas-src-v0.10.13...master)
3+
[Unreleased](https://github.com/blas-lapack-rs/openblas-src/compare/openblas-src-v0.10.14...master)
44
-----------
55

6+
[0.10.14 - 2026-01-28](https://github.com/blas-lapack-rs/openblas-src/compare/openblas-src-v0.10.13...v0.10.14)
7+
-----------
8+
9+
## What's Changed
10+
* Fix RISC-V target by @Dirreke in https://github.com/blas-lapack-rs/openblas-src/pull/146
11+
* Update OpenBLAS version to 0.3.31 by @Dirreke in https://github.com/blas-lapack-rs/openblas-src/pull/147
12+
613
[0.10.13 - 2025-09-09](https://github.com/blas-lapack-rs/openblas-src/compare/openblas-src-v0.10.12...v0.10.13)
714
-----------
815

openblas-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openblas-build"
3-
version = "0.10.13"
3+
version = "0.10.14"
44
license = "Apache-2.0/MIT"
55
edition = "2018"
66
authors = ["Toshiki Teramura <toshiki.teramura@gmail.com>"]

openblas-build/src/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub enum Interface {
1010
ILP64,
1111
}
1212

13-
/// CPU list in [TargetList](https://github.com/xianyi/OpenBLAS/blob/v0.3.10/TargetList.txt)
13+
/// CPU list in [TargetList](https://github.com/OpenMathLib/OpenBLAS/blob/develop/TargetList.txt)
1414
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
1515
#[allow(non_camel_case_types)] // to use original identifiers
1616
pub enum Target {

openblas-build/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//! and inspects its deliverables using [GNU binutils][binutils] (`nm` and `objdump`).
1111
//!
1212
//! [binutils]: https://www.gnu.org/software/binutils/
13-
//! [OpenBLAS]: https://github.com/xianyi/OpenBLAS
13+
//! [OpenBLAS]: https://github.com/OpenMathLib/OpenBLAS
1414
1515
mod build;
1616
mod check;

openblas-src/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openblas-src"
3-
version = "0.10.13"
3+
version = "0.10.14"
44
license = "Apache-2.0/MIT"
55
edition = "2018"
66
authors = [
@@ -39,7 +39,7 @@ libc = "0.2"
3939
[build-dependencies]
4040
pkg-config = "0.3.30"
4141
dirs = "6.0.0"
42-
openblas-build = { version = "0.10.13", path = "../openblas-build" }
42+
openblas-build = { version = "0.10.14", path = "../openblas-build" }
4343

4444
[target.'cfg(target_os="windows")'.build-dependencies]
4545
vcpkg = "0.2"

0 commit comments

Comments
 (0)