From 2b42b9cccd549d99b3dc114719c46e27b8644555 Mon Sep 17 00:00:00 2001 From: meh Date: Wed, 5 Aug 2026 14:13:32 +0700 Subject: [PATCH] release: prepare 1.0.0-beta.7 Restore the sized indexed update path so strict Clippy builds pass while retaining the fixed-width fast path for unsized rows. --- Cargo.toml | 4 ++-- codegen/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index de20570..7fa0570 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["codegen", "examples", "performance_measurement", "performance_measur [package] name = "worktable" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" edition = "2024" authors = ["Handy-caT"] license = "MIT" @@ -66,7 +66,7 @@ tracing = "0.1" url = { version = "2", optional = true } uuid = { version = "1.24.0", features = ["v4", "v7"] } walkdir = { version = "2", optional = true } -worktable_codegen = { path = "codegen", version = "=1.0.0-beta.6" } +worktable_codegen = { path = "codegen", version = "=1.0.0-beta.7" } [dev-dependencies] chrono = "0.4.43" diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index 20b6e61..759dcf3 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "worktable_codegen" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" edition = "2024" license = "MIT" description = "Proc-macro companion crate for worktable: the worktable! macro and its derives."