Skip to content
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
16 changes: 8 additions & 8 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: Security audit

on:
schedule:
- cron: '40 10 * * *'
- cron: "0 0 * * *"
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
- '**/audit.yml'
- "**/Cargo.toml"
- "**/Cargo.lock"
- "**/audit.yml"
pull_request:

jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/audit-check@v1
- uses: actions/checkout@v4
- name: generate Cargo.lock
run: cargo generate-lockfile
- uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
14 changes: 7 additions & 7 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ on: [pull_request, push]
jobs:
coverage:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v3
- name: Set nightly
run: rustup override set nightly
- name: Install llvm-tools-preview
run: rustup component add llvm-tools-preview
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
run: cargo llvm-cov --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
files: lcov.info
fail_ci_if_error: true
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file.

## [0.15.0] - 2025-02-12

### Miscellaneous Tasks

- Update dependencies (Adrian Seyboldt)


### Ci

- Update coverage and audit ci (Adrian Seyboldt)


## [0.14.0] - 2024-12-12

### Documentation
Expand All @@ -24,6 +36,8 @@ All notable changes to this project will be documented in this file.

- Update multiversion (Adrian Seyboldt)

- Update version and changelog (Adrian Seyboldt)


### Refactor

Expand Down
21 changes: 13 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nuts-rs"
version = "0.14.0"
version = "0.15.0"
authors = [
"Adrian Seyboldt <[email protected]>",
"PyMC Developers <[email protected]>",
Expand All @@ -18,16 +18,20 @@ opt-level = 2
codegen-units = 1

[dependencies]
rand = { version = "0.8.5", features = ["small_rng"] }
rand_distr = "0.4.3"
rand = { version = "0.9.0", features = ["small_rng"] }
rand_distr = "0.5.0"
multiversion = "0.8.0"
itertools = "0.13.0"
itertools = "0.14.0"
thiserror = "2.0.3"
arrow = { version = "53.1.0", default-features = false, features = ["ffi"] }
rand_chacha = "0.3.1"
arrow = { version = "54.1.0", default-features = false, features = ["ffi"] }
rand_chacha = "0.9.0"
anyhow = "1.0.72"
faer = { version = "0.19.4", default-features = false, features = ["std"] }
pulp = "0.20.1"
faer = { version = "0.21.4", default-features = false, features = [
"std",
"npy",
"linalg",
] }
pulp = "0.21.4"
rayon = "1.10.0"

[dev-dependencies]
Expand All @@ -37,6 +41,7 @@ criterion = "0.5.1"
nix = "0.29.0"
approx = "0.5.1"
ndarray = "0.16.1"
equator = "0.4.2"

[[bench]]
name = "sample"
Expand Down
Loading
Loading