Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.3.1 #60

Merged
merged 3 commits into from
Jan 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Update changelog for version ${{ needs.setup.outputs.new-version }}
id: changelog
uses: actions/github-script@v2
uses: actions/github-script@v3
with:
script: |
var fs = require('fs')
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
run: git push origin

- name: Create pull request
uses: actions/github-script@v2
uses: actions/github-script@v3
with:
script: |
const pr = await github.pulls.create({
Expand Down
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.0"
version = "0.3.1"
authors = ["Martin Geisler <martin@geisler.net>"]
description = "Functions for finding row-minima in a totally monotone matrix."
repository = "https://github.com/mgeisler/smawk"
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,19 @@ implementation. Enable the `ndarray` Cargo feature to use it.

## Changelog

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

This release relaxes the bounds on the `smawk_row_minima`,
`smawk_column_minima`, and `online_column_minima` functions so that
they work on matrices containing floating point numbers.

* [#55](https://github.com/mgeisler/smawk/pull/55): Relax bounds to
`PartialOrd` instead of `Ord`.
* [#56](https://github.com/mgeisler/smawk/pull/56): Update
dependencies to their latest versions.
* [#59](https://github.com/mgeisler/smawk/pull/59): Give an example of
what SMAWK does in the README.

### Version 0.3.0 (2020-09-02)

This release slims down the crate significantly by making `ndarray` an
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.0")]
#![doc(html_root_url = "https://docs.rs/smawk/0.3.1")]

#[cfg(feature = "ndarray")]
pub mod brute_force;
Expand Down