Skip to content

Commit 4cef9f8

Browse files
authored
Merge pull request #28 from blas-lapack-rs/bump_r_src
Updated r-src package version
2 parents 0de1e55 + bbd962b commit 4cef9f8

File tree

3 files changed

+24
-9
lines changed

3 files changed

+24
-9
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,18 @@ jobs:
3535
- openblas
3636
steps:
3737
- uses: actions/checkout@v4
38-
- run: rustup toolchain install stable --profile=minimal
39-
- run: cargo test --features=${{ matrix.feature }}
40-
env:
41-
CC: gcc-13
42-
FC: gfortran-13
43-
LIBRARY_PATH: /usr/local/opt/gcc@13/lib/gcc/13
38+
39+
- name: Export gcc@13 environment variables
40+
run: |
41+
echo "CC=$(brew --prefix gcc@13)/bin/gcc-13" >> $GITHUB_ENV
42+
echo "FC=$(brew --prefix gcc@13)/bin/gfortran-13" >> $GITHUB_ENV
43+
echo "LIBRARY_PATH=$(brew --prefix gcc@13)/lib/gcc/13" >> $GITHUB_ENV
44+
45+
- name: Install Rust toolchain
46+
run: rustup toolchain install stable --profile=minimal
47+
48+
- name: Run tests
49+
run: cargo test --features=${{ matrix.feature }}
4450

4551
test-ubuntu:
4652
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
## [0.11.0] - 2025-02-02
4+
### Updated
5+
- Now using `r-src` [v0.2.1]
6+

Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "blas-src"
3-
version = "0.10.0"
4-
license = "Apache-2.0 OR MIT"
3+
version = "0.11.0"
4+
license = "Apache-2.0/MIT"
55
authors = [
66
"Augusto Borges <[email protected]>",
77
"Balasubramanian Narasimhan <[email protected]>",
@@ -49,5 +49,8 @@ version = "0.10"
4949
optional = true
5050

5151
[dependencies.r-src]
52-
version = "0.1"
52+
version = "0.2.1"
5353
optional = true
54+
55+
[package.metadata.docs.rs]
56+
changelog = "CHANGELOG.md"

0 commit comments

Comments
 (0)