Skip to content

Commit

Permalink
Update thiserror to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
msk committed Nov 18, 2024
1 parent 2a7c11f commit e740138
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
rust: [stable, 1.65]
rust: [stable, 1.67]

steps:
- name: Install Rust
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ file is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and
this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

* Requires Rust 1.67 or later.

## [0.8.0] - 2024-11-01

### Changed
Expand Down Expand Up @@ -112,6 +118,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).

* Principal component analysis (PCA).

[Unreleased]: https://github.com/petabi/petal-decomposition/compare/0.8.0...main
[0.8.0]: https://github.com/petabi/petal-decomposition/compare/0.7.0...0.8.0
[0.7.0]: https://github.com/petabi/petal-decomposition/compare/0.6.2...0.7.0
[0.6.2]: https://github.com/petabi/petal-decomposition/compare/0.6.1...0.6.2
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ openblas-static = ["openblas-src/static"]
openblas-system = ["openblas-src/system"]

serialization = [
"serde",
"lair/serialization",
"ndarray/serde",
"rand/serde1",
"rand_pcg/serde1",
"serde",
"lair/serialization",
"ndarray/serde",
"rand/serde1",
"rand_pcg/serde1",
]

[dependencies]
Expand All @@ -60,7 +60,7 @@ rand = "0.8"
rand_distr = "0.4"
rand_pcg = "0.3"
serde = { version = "1", features = ["derive"], optional = true }
thiserror = "1"
thiserror = "2"

[dependencies.intel-mkl-src]
version = "0.8.1"
Expand Down

0 comments on commit e740138

Please sign in to comment.