Skip to content

Commit

Permalink
Merge pull request #60 from mgeisler/release-0.3.1
Browse files Browse the repository at this point in the history
Release 0.3.1
  • Loading branch information
mgeisler authored Jan 30, 2021
2 parents 0df49e7 + df259f2 commit 7d2913e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
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

0 comments on commit 7d2913e

Please sign in to comment.