Skip to content

Commit

Permalink
bump version to 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
starkat99 committed Jan 9, 2023
1 parent 6fefe28 commit 4c56dab
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Fixed

## [2.2.1] - 2023-01-08 <a name="2.2.1"></a>
### Changed
- Reduced unnecessary bounds checks for SIMD operations on slices. By [@Shnatsel].
- Further slice conversion optimizations for slices. Fixes [#66].
- Further slice conversion optimizations for slices. Resolves [#66].

## [2.2.0] - 2022-12-30 <a name="2.2.0"></a>
### Added
Expand All @@ -16,7 +18,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Deserialize now supports deserializing from `f32`, `f64`, and string values in addition to its
previous default deserialization. Closes [#60].

### Fixed
### Changed
- Add `#[inline]` on fallback functions, which improved conversion execution on non-nightly rust
by up to 50%. By [@Shnatsel].

Expand Down Expand Up @@ -291,8 +293,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
[@Shnatsel]: https://github.com/Shnatsel


[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.2.0...HEAD
[2.2.0]: https://github.com/starkat99/half-rs/compare/v2.0.0...v2.2.0
[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.2.1...HEAD
[2.2.1]: https://github.com/starkat99/half-rs/compare/v2.2.0...v2.2.1
[2.2.0]: https://github.com/starkat99/half-rs/compare/v2.1.0...v2.2.0
[2.1.0]: https://github.com/starkat99/half-rs/compare/v2.0.0...v2.1.0
[2.0.0]: https://github.com/starkat99/half-rs/compare/v1.8.2...v2.0.0
[1.8.2]: https://github.com/starkat99/half-rs/compare/v1.8.1...v1.8.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "half"
# Remember to keep in sync with html_root_url crate attribute
version = "2.2.0"
version = "2.2.1"
authors = ["Kathryn Long <squeeself@gmail.com>"]
description = "Half-precision floating point f16 and bf16 types for Rust implementing the IEEE 754-2008 standard binary16 and bfloat16 types."
repository = "https://github.com/starkat99/half-rs"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
),
feature(stdsimd, f16c_target_feature)
)]
#![doc(html_root_url = "https://docs.rs/half/2.2.0")]
#![doc(html_root_url = "https://docs.rs/half/2.2.1")]
#![doc(test(attr(deny(warnings), allow(unused))))]
#![cfg_attr(docsrs, feature(doc_cfg))]

Expand Down

0 comments on commit 4c56dab

Please sign in to comment.