From 1ac5606fca2424b863fc075ae5ae861a5ddba181 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Fri, 5 Jun 2026 15:42:21 +0200 Subject: [PATCH 1/3] Bump version to 0.11.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 792291d..99651d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "hashlink" -version = "0.11.0" +version = "0.11.1" dependencies = [ "hashbrown", "rustc-hash", diff --git a/Cargo.toml b/Cargo.toml index 0cc274a..d51c5ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hashlink" -version = "0.11.0" +version = "0.11.1" edition = "2018" description = "HashMap-like containers that hold their key-value pairs in a user controllable order" repository = "https://github.com/kyren/hashlink" From 6b3acce381c8379da291f9ff00ed2d94a2dc0c1e Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Fri, 5 Jun 2026 15:42:42 +0200 Subject: [PATCH 2/3] Update Cargo metadata --- Cargo.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d51c5ed..2b62790 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,16 +3,13 @@ name = "hashlink" version = "0.11.1" edition = "2018" description = "HashMap-like containers that hold their key-value pairs in a user controllable order" -repository = "https://github.com/kyren/hashlink" +repository = "https://github.com/djc/hashlink" documentation = "https://docs.rs/hashlink" readme = "README.md" keywords = ["data-structures", "no_std"] license = "MIT OR Apache-2.0" rust-version = "1.65" -[badges] -circle-ci = { repository = "kyren/hashlink", branch = "master" } - [features] serde_impl = ["serde"] From 8c29662feba1469a5c4a179bf22a6ddf78cc5c5d Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Fri, 5 Jun 2026 15:43:23 +0200 Subject: [PATCH 3/3] Bump edition to 2021 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2b62790..af7be7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hashlink" version = "0.11.1" -edition = "2018" +edition = "2021" description = "HashMap-like containers that hold their key-value pairs in a user controllable order" repository = "https://github.com/djc/hashlink" documentation = "https://docs.rs/hashlink"