File tree 3 files changed +24
-9
lines changed
3 files changed +24
-9
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,18 @@ jobs:
35
35
- openblas
36
36
steps :
37
37
- 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 }}
44
50
45
51
test-ubuntu :
46
52
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ ## [ 0.11.0] - 2025-02-02
4
+ ### Updated
5
+ - Now using ` r-src ` [ v0.2.1]
6
+
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
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"
5
5
authors = [
6
6
" Augusto Borges <[email protected] >" ,
7
7
" Balasubramanian Narasimhan <[email protected] >" ,
@@ -49,5 +49,8 @@ version = "0.10"
49
49
optional = true
50
50
51
51
[dependencies .r-src ]
52
- version = " 0.1"
52
+ version = " 0.2. 1"
53
53
optional = true
54
+
55
+ [package .metadata .docs .rs ]
56
+ changelog = " CHANGELOG.md"
You can’t perform that action at this time.
0 commit comments