diff --git a/CHANGELOG.md b/CHANGELOG.md index 076bda35..f36ba7a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,18 @@ Note: This is the main Changelog file for the Rust solver. The Changelog file fo --------------------- --> + +## [v0.9.1] - 2024-08-14 + + +### Fixed + +- Order of dependencies in `Cargo.toml` fixes crate-not-found issue on Windows + + + @@ -286,6 +298,7 @@ This is a breaking API change. --------------------- --> +[v0.9.1]: https://github.com/alphaville/optimization-engine/compare/v0.9.0...v0.9.1 [v0.9.0]: https://github.com/alphaville/optimization-engine/compare/v0.8.1...v0.9.0 [v0.8.1]: https://github.com/alphaville/optimization-engine/compare/v0.8.0...v0.8.1 [v0.8.0]: https://github.com/alphaville/optimization-engine/compare/v0.7.7...v0.8.0 diff --git a/Cargo.toml b/Cargo.toml index ae50f398..f1f645a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ homepage = "https://alphaville.github.io/optimization-engine/" repository = "https://github.com/alphaville/optimization-engine" # Version of this crate (SemVer) -version = "0.9.0" +version = "0.9.1" edition = "2018" @@ -94,12 +94,6 @@ rpmalloc = { version = "0.2", features = [ "statistics", ], optional = true } -# jemallocator is an optional feature; it will only be loaded if the feature -# `jem` is used (i.e., if we compile with `cargo build --features jem`) -[target.'cfg(not(target_env = "msvc"))'.dependencies] -jemallocator = { version = "0.5", optional = true } - - # computation of roots of cubic equation needed for the projection on the # epigraph of the squared Euclidean norm roots = "0.0.8" @@ -108,6 +102,10 @@ roots = "0.0.8" ndarray = { version = "0.15", features = ["approx"] } modcholesky = "0.1" +# jemallocator is an optional feature; it will only be loaded if the feature +# `jem` is used (i.e., if we compile with `cargo build --features jem`) +[target.'cfg(not(target_env = "msvc"))'.dependencies] +jemallocator = { version = "0.5", optional = true } # -------------------------------------------------------------------------- # F.E.A.T.U.R.E.S.