Skip to content

Commit

Permalink
Merge pull request #80 from mgeisler/release-0.3.2
Browse files Browse the repository at this point in the history
Release 0.3.2
  • Loading branch information
mgeisler authored Sep 17, 2023
2 parents abeb870 + f5e4dbb commit df374f7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smawk"
version = "0.3.1"
version = "0.3.2"
authors = ["Martin Geisler <martin@geisler.net>"]
categories = ["algorithms", "mathematics", "science"]
edition = "2021"
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,23 @@ implementation. Enable the `ndarray` Cargo feature to use it.

## Changelog

### Version 0.3.2 (2023-09-17)

This release adds more documentation and renames the top-level SMAWK functions.
The old names have been kept for now to ensure backwards compatibility, but they
will be removed in a future release.

- [#65](https://github.com/mgeisler/smawk/pull/65): Forbid the use of unsafe
code.
- [#69](https://github.com/mgeisler/smawk/pull/69): Migrate to the Rust 2021
edition.
- [#73](https://github.com/mgeisler/smawk/pull/73): Add examples to all
functions.
- [#74](https://github.com/mgeisler/smawk/pull/74): Add “mathematics” as a crate
category.
- [#75](https://github.com/mgeisler/smawk/pull/75): Remove `smawk_` prefix from
optimized functions.

### Version 0.3.1 (2021-01-30)

This release relaxes the bounds on the `smawk_row_minima`,
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
//! unknown inputs, it can use [`monge::is_monge`] to verify that a
//! matrix is a Monge matrix.
#![doc(html_root_url = "https://docs.rs/smawk/0.3.1")]
#![doc(html_root_url = "https://docs.rs/smawk/0.3.2")]
// The s! macro from ndarray uses unsafe internally, so we can only
// forbid unsafe code when building with the default features.
#![cfg_attr(not(feature = "ndarray"), forbid(unsafe_code))]
Expand Down

0 comments on commit df374f7

Please sign in to comment.