From 5fd9a8ed990f7a8015d85d81c5a075d584826273 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Sun, 4 Jan 2026 01:33:17 -0500 Subject: [PATCH] chore: Release libc 1.0.0-alpha.2 It has been quite a while, so time for another alpha release. --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- libc-test/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d7242de113360..7c4a8c0fcf73c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "ctest" -version = "0.5.0-beta.2" +version = "0.5.0-beta.3" dependencies = [ "askama", "cc", @@ -120,7 +120,7 @@ version = "0.1.0" dependencies = [ "cc", "ctest", - "libc 1.0.0-alpha.1", + "libc 1.0.0-alpha.2", ] [[package]] @@ -183,7 +183,7 @@ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" [[package]] name = "libc" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" dependencies = [ "rustc-std-workspace-core", ] @@ -197,7 +197,7 @@ dependencies = [ "cfg-if", "ctest", "glob", - "libc 1.0.0-alpha.1", + "libc 1.0.0-alpha.2", "proc-macro2", "regex", "syn", diff --git a/Cargo.toml b/Cargo.toml index 912071d3c59e2..74cb58492af4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" keywords = ["libc", "ffi", "bindings", "operating", "system"] categories = ["external-ffi-bindings", "no-std", "os"] exclude = ["/ci/*", "/.github/*", "/.cirrus.yml", "/triagebot.toml"] diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml index 68c5daa9807a7..45f21bf1c1161 100644 --- a/libc-test/Cargo.toml +++ b/libc-test/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/rust-lang/libc" [dependencies] cfg-if = "1.0.4" -libc = { path = "..", version = "1.0.0-alpha.1", default-features = false } +libc = { path = "..", default-features = false } [dev-dependencies] syn = { version = "2.0.108", features = ["full", "visit"] }