Skip to content

Commit

Permalink
Merge pull request #356 from alphaville/dev
Browse files Browse the repository at this point in the history
New version (0.9.1)
  • Loading branch information
alphaville authored Aug 14, 2024
2 parents 6e46848 + 9da2bda commit 00d195e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ Note: This is the main Changelog file for the Rust solver. The Changelog file fo
--------------------- -->


<!-- ---------------------
v0.9.0
--------------------- -->
## [v0.9.1] - 2024-08-14


### Fixed

- Order of dependencies in `Cargo.toml` fixes crate-not-found issue on Windows



<!-- ---------------------
v0.9.0
--------------------- -->
Expand Down Expand Up @@ -286,6 +298,7 @@ This is a breaking API change.
--------------------- -->

<!-- Releases -->
[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
Expand Down
12 changes: 5 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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"
Expand All @@ -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.
Expand Down

0 comments on commit 00d195e

Please sign in to comment.