Skip to content

Commit

Permalink
Merge pull request #11 from marcbone/release-0.1.7
Browse files Browse the repository at this point in the history
Release 0.1.7
  • Loading branch information
marcbone authored May 2, 2023
2 parents ef39ed1 + c4396c6 commit 0e7dc6f
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
run: cargo build --verbose
- name: Check Format
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --all-features -- -D warnings
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
Expand Down
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

## [0.1.7] - 2023-05-02

### Added

- Changelog

### Fixed

- Library handles negative directions properly now
- Fixed badge in README

## [0.1.6] - 2021-05-01

### Changed

- Calculation of the time intervals is now much faster

## [0.1.5] - 2020-12-10

### Changed

- Replaced powf with powi in internal implementation

## [0.1.4] - 2020-10-12
- Initial release
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s_curve"
version = "0.1.6"
version = "0.1.7"
authors = ["Marco Boneberger <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -26,4 +26,4 @@ path = "examples/plotall.rs"

[dependencies]
[dev-dependencies]
gnuplot = "0.0.37"
gnuplot = "0.0.37"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![crates.io](https://img.shields.io/crates/v/s_curve.svg)](https://crates.io/crates/s_curve)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/marcbone/s_curve/Rust)
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/marcbone/s_curve/rust.yml)](https://github.com/marcbone/s_curve/actions)
[![crates.io](https://img.shields.io/crates/l/s_curve.svg)](https://crates.io/crates/s_curve)
[![crates.io](https://img.shields.io/crates/d/s_curve.svg)](https://crates.io/crates/s_curve)
[![docs.rs](https://docs.rs/s_curve/badge.svg)](https://docs.rs/s_curve)
Expand Down

0 comments on commit 0e7dc6f

Please sign in to comment.