Skip to content

Commit

Permalink
v1.1.1 (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Mar 27, 2021
1 parent ef817e7 commit f657fb0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.1.1 (2021-03-27)
### Added
- `doc_cfg` ([#64])

[#64]: https://github.com/tarcieri/micromath/pull/64

## 1.1.0 (2020-09-30)
### Added
- `powi` support ([#53])
Expand Down
5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "micromath"
version = "1.1.0" # Also update html_root_url in lib.rs when bumping this
version = "1.1.1" # Also update html_root_url in lib.rs when bumping this
description = """
Embedded-friendly math library featuring fast floating point approximations
(with small code size) for common arithmetic operations, trigonometry,
Expand All @@ -15,9 +15,6 @@ edition = "2018"
categories = ["embedded", "mathematics", "science", "no-std"]
keywords = ["math", "quaternions", "statistics", "trigonometry", "vector"]

[badges]
maintenance = { status = "passively-maintained" }

[dependencies.generic-array]
version = "0.14"
optional = true
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tarcieri/micromath/main/img/micromath-sq.png",
html_root_url = "https://docs.rs/micromath/1.1.0"
html_root_url = "https://docs.rs/micromath/1.1.1"
)]
#![forbid(unsafe_code)]
#![warn(
Expand Down

0 comments on commit f657fb0

Please sign in to comment.