Skip to content

Commit bb22670

Browse files
committed
Bump version
1 parent 2c113c2 commit bb22670

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* **`1.2.0`**
2+
* Mark more functions as `const`
3+
* Bump MSRV to 1.83.0
4+
15
* **`1.1.1`**
26
* Add `Flatten` and `Unflatten` traits for converting between nested arrays.
37

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[package]
22

33
name = "generic-array"
4-
version = "1.1.1"
4+
version = "1.2.0"
55
authors = ["Bartłomiej Kamiński <[email protected]>", "Aaron Trent <[email protected]>"]
66
edition = "2021"
7+
rust-version = "1.83"
78

89
description = "Generic types implementing functionality of arrays"
910
readme = "README.md"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This crate implements a structure that can be used as a generic array type.
66

7-
**Requires minimum Rust version of 1.65.0
7+
**Requires minimum Rust version of 1.83.0
88

99
[Documentation on GH Pages](https://fizyk20.github.io/generic-array/generic_array/) may be required to view certain types on foreign crates.
1010

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! This crate implements a structure that can be used as a generic array type.
22
//!
3-
//! **Requires minimum Rust version of 1.65.0
3+
//! **Requires minimum Rust version of 1.83.0
44
//!
55
//! [Documentation on GH Pages](https://fizyk20.github.io/generic-array/generic_array/)
66
//! may be required to view certain types on foreign crates.

0 commit comments

Comments
 (0)