Skip to content

Commit

Permalink
Prepare release.
Browse files Browse the repository at this point in the history
  • Loading branch information
n3vu0r committed Jan 3, 2022
1 parent 90acf6b commit f78f348
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lav"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "Lane-Associated Vector (LAV): Portable SIMD vector trait as GAT of SIMD lane trait."
documentation = "https://docs.rs/lav"
Expand Down
7 changes: 7 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Version 0.4.0 (2022-01-03)

* Add `WrapFrom` and `WrapInto` traits.
* Add `ApproxEq` trait.
* Add `Select` trait.
* Adhere to pedantic lints.

# Version 0.3.0 (2021-12-09)

* Add trait bounds and their reference versions.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 Rouven Spreckels <[email protected]>
// Copyright © 2021-2022 Rouven Spreckels <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down
2 changes: 1 addition & 1 deletion src/simd_bits/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 Rouven Spreckels <[email protected]>
// Copyright © 2021-2022 Rouven Spreckels <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down
2 changes: 1 addition & 1 deletion src/simd_bits/u32.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 Rouven Spreckels <[email protected]>
// Copyright © 2021-2022 Rouven Spreckels <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down
2 changes: 1 addition & 1 deletion src/simd_bits/u64.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 Rouven Spreckels <[email protected]>
// Copyright © 2021-2022 Rouven Spreckels <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down
2 changes: 1 addition & 1 deletion src/simd_mask/i32.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 Rouven Spreckels <[email protected]>
// Copyright © 2021-2022 Rouven Spreckels <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down
2 changes: 1 addition & 1 deletion src/simd_mask/i64.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 Rouven Spreckels <[email protected]>
// Copyright © 2021-2022 Rouven Spreckels <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down
2 changes: 1 addition & 1 deletion src/simd_mask/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 Rouven Spreckels <[email protected]>
// Copyright © 2021-2022 Rouven Spreckels <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down
2 changes: 1 addition & 1 deletion src/simd_real/f32.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 Rouven Spreckels <[email protected]>
// Copyright © 2021-2022 Rouven Spreckels <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down
2 changes: 1 addition & 1 deletion src/simd_real/f64.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 Rouven Spreckels <[email protected]>
// Copyright © 2021-2022 Rouven Spreckels <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down
2 changes: 1 addition & 1 deletion src/simd_real/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 Rouven Spreckels <[email protected]>
// Copyright © 2021-2022 Rouven Spreckels <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down

0 comments on commit f78f348

Please sign in to comment.