Skip to content

Commit

Permalink
Release argmin-math v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-k committed Sep 9, 2022
1 parent 483456f commit 034eab7
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 7 deletions.
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## argmin-math [Unreleased]

## [argmin-math v0.2.1] 2022-09-09

### Added
- Added ArgminMinMax and ArgminSignum implementation for nalgebra types. Now the L-BFGS should work work with the nalgebra backend again. (#257, #258, @stefan-k)
- Added an L-BFGS example using the nalgebra backend (#258, @stefan-k)

## [argmin v0.7.0] and [argmin-math v0.2.0] 2022-08-28

### Added
Expand Down Expand Up @@ -181,7 +187,8 @@ This is a rather large release with many (breaking) changes.
For older versions please see the Git history.

[Unreleased]: https://github.com/argmin-rs/argmin/compare/v0.6.0...HEAD
[argmin v0.6.0]: https://github.com/argmin-rs/argmin/compare/v0.5.1...argmin_v0.6.0
[argmin-math v0.1.0]: https://github.com/argmin-rs/argmin/compare/v0.5.1...argmin_v0.6.0
[argmin v0.6.0]: https://github.com/argmin-rs/argmin/compare/v0.6.0...argmin_v0.7.0
[argmin-math v0.1.0]: https://github.com/argmin-rs/argmin/compare/v0.6.0...argmin_v0.7.0
[argmin v0.6.0]: https://github.com/argmin-rs/argmin/compare/v0.5.1...argmin-v0.6.0
[argmin-math v0.1.0]: https://github.com/argmin-rs/argmin/compare/v0.5.1...argmin-v0.6.0
[argmin v0.6.0]: https://github.com/argmin-rs/argmin/compare/argmin-v0.6.0...argmin-v0.7.0
[argmin-math v0.2.0]: https://github.com/argmin-rs/argmin/compare/argmin-v0.6.0...argmin-v0.7.0
[argmin-math v0.2.1]: https://github.com/argmin-rs/argmin/compare/argmin-v0.7.0...argmin-math-v0.2.1
2 changes: 1 addition & 1 deletion argmin-math/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "argmin-math"
version = "0.2.0"
version = "0.2.1"
authors = ["Stefan Kroboth <stefan.kroboth@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions media/book/src/using_argmin.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ In order to use argmin, one needs to add both `argmin` and `argmin-math` to `Car

```toml
[dependencies]
argmin = { version = "0.7.0" }
argmin-math = { version = "0.2.0", features = ["ndarray_latest-serde,nalgebra_latest-serde"] }
argmin = { version = "0.7" }
argmin-math = { version = "0.2", features = ["ndarray_latest-serde,nalgebra_latest-serde"] }
```

or, for the current development version:
Expand Down
29 changes: 29 additions & 0 deletions media/website/content/blog/argmin-math-version-v0.2.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
+++
title = "argmin-math 0.2.1 released"
description = ""
date = 2022-09-09T00:00:00+00:00
updated = 2022-09-09T00:00:00+00:00
draft = false
template = "blog/page.html"

[taxonomies]
authors = ["Stefan Kroboth"]

[extra]
+++

> <b>argmin</b> offers a range of numerical optimization methods in Rust.
The previous release added (optional) L1-regularization to L-BFGS which increased the trait bounds on the acceptable types.
Unfortunately these traits where only partially implemented for the `nalgebra` backend, therefore L-BFGS could not be used with `nalgebra` types anymore.
The 0.2.1 release of `argmin-math` fixes this and adds an L-BFGS example for `nalgebra` types to the `examples/` directory.


<br>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<p align="center">
<a class="github-button" href="https://github.com/argmin-rs/argmin" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star argmin-rs/argmin on GitHub">Star</a>
<a class="github-button" href="https://github.com/argmin-rs/argmin/subscription" data-icon="octicon-eye" data-size="large" data-show-count="true" aria-label="Watch argmin-rs/argmin on GitHub">Watch</a>
<a class="github-button" href="https://github.com/argmin-rs/argmin/fork" data-icon="octicon-repo-forked" data-size="large" data-show-count="true" aria-label="Fork argmin-rs/argmin on GitHub">Fork</a>
<a class="github-button" href="https://github.com/sponsors/stefan-k" data-icon="octicon-heart" data-size="large" aria-label="Sponsor @stefan-k on GitHub">Sponsor</a>
</p>

0 comments on commit 034eab7

Please sign in to comment.