Skip to content

Commit

Permalink
argmin version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-k committed Dec 26, 2023
1 parent 06c1aba commit 6df0765
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## argmin-math [argmin-math unreleased]

## argmin [argmin v0.9.0] 2023-12-26

### Added

* Implemented ArgminInv for f32/f64 (1D) (@sdrap, #346)
* Added a simple example of Nelder-Mead usage (@cjordan, #359)

### Fixed

* Clippy lints (@jjbayer, @stefan-k, #341, #376, #380)
* Fixed wrong example link (@itrumper, #352)
* Correct line search to search over gradient (@DevonMorris, #354)
* SteepestDescent now correctly keeps track of prev_param (@DevonMorris, #362)
* Added a missing feature for testing argmin-math in the docs (@stefan-k, #371)
* Fixed a typo in argmin book (@imeckler, #373)
* Fixed crate versions in book (@stefan-k, #375)

### Changed

* Updated gnuplot to 0.0.39 (@stefan-k, #364)
* Switched to resolver = 2 for entire workspace (@stefan-k, #372)

## argmin [argmin v0.8.1] 2023-02-20

### Added
Expand Down Expand Up @@ -243,6 +265,7 @@ For older versions please see the Git history.

[argmin unreleased]: https://github.com/argmin-rs/argmin/compare/argmin-v0.8.1...HEAD
[argmin-math unreleased]: https://github.com/argmin-rs/argmin/compare/argmin-math-v0.3.0...HEAD
[argmin v0.9.0]: https://github.com/argmin-rs/argmin/compare/argmin-v0.8.1...argmin-v0.9.0
[argmin v0.8.1]: https://github.com/argmin-rs/argmin/compare/argmin-v0.8.0...argmin-v0.8.1
[argmin v0.8.0]: https://github.com/argmin-rs/argmin/compare/argmin-v0.7.0...argmin-v0.8.0
[argmin v0.7.0]: https://github.com/argmin-rs/argmin/compare/argmin-v0.6.0...argmin-v0.7.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
|
<a href="https://argmin-rs.github.io/argmin/argmin/">Docs (main branch)</a>
|
<a href="https://github.com/argmin-rs/argmin/tree/argmin-v0.8.1/argmin/examples">Examples (latest release)</a>
<a href="https://github.com/argmin-rs/argmin/tree/argmin-v0.9.0/argmin/examples">Examples (latest release)</a>
|
<a href="https://github.com/argmin-rs/argmin/tree/main/argmin/examples">Examples (main branch)</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion argmin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "argmin"
version = "0.8.1"
version = "0.9.0"
authors = ["Stefan Kroboth <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion media/book/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ argmin is designed to simplify the implementation of optimization algorithms and

> **IMPORTANT NOTE**
>
> This book covers version 0.8 of argmin! Parts of this book may not apply to versions below 0.8.
> This book covers version 0.9 of argmin! Parts of this book may not apply to versions below 0.9.

## The argmin ecosystem
Expand Down
2 changes: 1 addition & 1 deletion media/book/src/using_argmin.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ In order to use argmin, one needs to add both `argmin` and `argmin-math` to `Car

```toml
[dependencies]
argmin = { version = "0.8" }
argmin = { version = "0.9" }
argmin-math = { version = "0.3", features = ["ndarray_latest-serde", "nalgebra_latest-serde"] }
```

Expand Down

0 comments on commit 6df0765

Please sign in to comment.