From 7c8a898a0d358cf0554887d101be55a21a5128d7 Mon Sep 17 00:00:00 2001 From: Jacob Kiesel Date: Fri, 22 Mar 2024 17:07:36 -0600 Subject: [PATCH] bump patch version --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee1200c..46b6e00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 6.0.1 + +- Remove dependency on `once_cell` for Windows users, replace with `std::sync::OnceLock`. + ## 6.0.0 - MSRV is now 1.70 diff --git a/Cargo.toml b/Cargo.toml index 35a3bf7..beec5aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "which" -version = "6.0.0" +version = "6.0.1" edition = "2021" rust-version = "1.70" authors = ["Harry Fei "]