Skip to content

Updated r-src package version #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Feb 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,18 @@ jobs:
- openblas
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile=minimal
- run: cargo test --features=${{ matrix.feature }}
env:
CC: gcc-13
FC: gfortran-13
LIBRARY_PATH: /usr/local/opt/gcc@13/lib/gcc/13

- name: Export gcc@13 environment variables
run: |
echo "CC=$(brew --prefix gcc@13)/bin/gcc-13" >> $GITHUB_ENV
echo "FC=$(brew --prefix gcc@13)/bin/gfortran-13" >> $GITHUB_ENV
echo "LIBRARY_PATH=$(brew --prefix gcc@13)/lib/gcc/13" >> $GITHUB_ENV

- name: Install Rust toolchain
run: rustup toolchain install stable --profile=minimal

- name: Run tests
run: cargo test --features=${{ matrix.feature }}

test-ubuntu:
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Changelog

## [0.11.0] - 2025-02-02
### Updated
- Now using `r-src` [v0.2.1]

9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "blas-src"
version = "0.10.0"
license = "Apache-2.0 OR MIT"
version = "0.11.0"
license = "Apache-2.0/MIT"
authors = [
"Augusto Borges <[email protected]>",
"Balasubramanian Narasimhan <[email protected]>",
Expand Down Expand Up @@ -49,5 +49,8 @@ version = "0.10"
optional = true

[dependencies.r-src]
version = "0.1"
version = "0.2.1"
optional = true

[package.metadata.docs.rs]
changelog = "CHANGELOG.md"