Skip to content

Commit e43ed98

Browse files
authored
Revert "[meta] update MSRV to 1.75 (#79)" (#86)
This reverts commit 48e9c57. We're going to bump the MSRV in the future, but let's lower it for now to avoid an unnecessary minor version bump.
1 parent fd748be commit e43ed98

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
strategy:
3636
matrix:
3737
os: [ubuntu-latest]
38-
# 1.75 is the MSRV
39-
rust-version: ["1.75", stable]
38+
# 1.67 is the MSRV
39+
rust-version: ["1.67", stable]
4040
fail-fast: false
4141
env:
4242
RUSTFLAGS: -D warnings

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
license = "MIT OR Apache-2.0"
1010
repository = "https://github.com/oxidecomputer/newtype-uuid"
1111
documentation = "https://docs.rs/newtype-uuid"
12-
rust-version = "1.75"
12+
rust-version = "1.67"
1313

1414
[workspace.dependencies]
1515
expectorate = "1.2.0"

crates/newtype-uuid/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
![License: MIT OR Apache-2.0](https://img.shields.io/crates/l/newtype-uuid.svg?)
66
[![crates.io](https://img.shields.io/crates/v/newtype-uuid.svg?logo=rust)](https://crates.io/crates/newtype-uuid)
77
[![docs.rs](https://img.shields.io/docsrs/newtype-uuid.svg?logo=docs.rs)](https://docs.rs/newtype-uuid)
8-
[![Rust: ^1.75.0](https://img.shields.io/badge/rust-^1.75.0-93450a.svg?logo=rust)](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field)
8+
[![Rust: ^1.67.0](https://img.shields.io/badge/rust-^1.67.0-93450a.svg?logo=rust)](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field)
99
<!-- cargo-sync-rdme ]] -->
1010
<!-- cargo-sync-rdme rustdoc [[ -->
1111
A newtype wrapper around [`Uuid`](https://docs.rs/uuid/1.17.0/uuid/struct.Uuid.html).
@@ -111,7 +111,7 @@ permits conversions between typed and untyped UUIDs.
111111

112112
## Minimum supported Rust version (MSRV)
113113

114-
The MSRV of this crate is **Rust 1.75.** In general, this crate will follow the MSRV of the
114+
The MSRV of this crate is **Rust 1.67.** In general, this crate will follow the MSRV of the
115115
underlying `uuid` crate or of dependencies, with an aim to be conservative.
116116

117117
Within the 1.x series, MSRV updates will be accompanied by a minor version bump. The MSRVs for
@@ -120,7 +120,6 @@ each minor version are:
120120
* Version **1.0.x**: Rust 1.60.
121121
* Version **1.1.x**: Rust 1.61. This permits `TypedUuid<T>` to have `const fn` methods.
122122
* Version **1.2.x**: Rust 1.67, required by some dependency updates.
123-
* Unreleased: Rust 1.75, required by some dependency updates.
124123

125124
## Alternatives
126125

crates/newtype-uuid/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
//!
103103
//! # Minimum supported Rust version (MSRV)
104104
//!
105-
//! The MSRV of this crate is **Rust 1.75.** In general, this crate will follow the MSRV of the
105+
//! The MSRV of this crate is **Rust 1.67.** In general, this crate will follow the MSRV of the
106106
//! underlying `uuid` crate or of dependencies, with an aim to be conservative.
107107
//!
108108
//! Within the 1.x series, MSRV updates will be accompanied by a minor version bump. The MSRVs for
@@ -111,7 +111,6 @@
111111
//! * Version **1.0.x**: Rust 1.60.
112112
//! * Version **1.1.x**: Rust 1.61. This permits `TypedUuid<T>` to have `const fn` methods.
113113
//! * Version **1.2.x**: Rust 1.67, required by some dependency updates.
114-
//! * Unreleased: Rust 1.75, required by some dependency updates.
115114
//!
116115
//! # Alternatives
117116
//!

0 commit comments

Comments
 (0)