From a7ef0e2689f54262e4de49a45f67049f472e600c Mon Sep 17 00:00:00 2001 From: "Teppei.F" <37261985+T3pp31@users.noreply.github.com> Date: Sat, 30 May 2026 10:49:34 +0900 Subject: [PATCH] chore: bump crate version to 1.0.9 Align Cargo.toml, Cargo.lock, and README with the planned v1.0.9 release so crates.io publish can proceed after tagging. Co-authored-by: Cursor --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e054c56..38e84bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -60,7 +60,7 @@ checksum = "6a65b545ab31d687cff52899d4890855fec459eb6afe0da6417b8a18da87aa29" [[package]] name = "caesar_cipher_enc_dec" -version = "1.0.4" +version = "1.0.9" dependencies = [ "clap", "tempfile", diff --git a/Cargo.toml b/Cargo.toml index 90346ac..9f306f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "caesar_cipher_enc_dec" -version = "1.0.4" +version = "1.0.9" edition = "2021" description = "can easily use caesar cipher" license = "MIT" diff --git a/README.md b/README.md index ea27451..63c7638 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -caesar_cipher_enc_dec = "1.0.4" +caesar_cipher_enc_dec = "1.0.9" ``` > Note: This version is pinned for documentation consistency with this repository (`Cargo.toml`). For the latest release, always check [crates.io](https://crates.io/crates/caesar_cipher_enc_dec).