From 32497c289287d3697700f3cb473e0834b8fdd5c5 Mon Sep 17 00:00:00 2001 From: Kamil Sopko Date: Thu, 25 Jun 2026 20:55:47 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20bump=20version=200.1.1=20=E2=86=92=200?= =?UTF-8?q?.1.2=20across=20all=20crates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update version in root Cargo.toml, xtax-blob-storage, xtax-encryption - Update intra-workspace dependency versions - Update version banners in lib.rs, README.md, docs/index.md - Update release.yml example version - Update CONTRIBUTING.md tag examples - Cargo.lock auto-updated --- .github/workflows/release.yml | 2 +- CONTRIBUTING.md | 4 ++-- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- crates/xtax-blob-storage/Cargo.toml | 4 ++-- crates/xtax-blob-storage/README.md | 2 +- crates/xtax-blob-storage/docs/index.md | 2 +- crates/xtax-blob-storage/src/lib.rs | 2 +- crates/xtax-encryption/Cargo.toml | 2 +- crates/xtax-encryption/README.md | 2 +- 10 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c03efee..3360555 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: workflow_dispatch: inputs: version: - description: 'Version to release (e.g. 0.1.1)' + description: 'Version to release (e.g. 0.1.2)' required: true type: string diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c71e4ac..2201c8a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -73,8 +73,8 @@ in order: `xtax-encryption` → `xtax-blob-storage` → `xtax`. 3. Commit and push to `main`. Wait for CI to pass. 4. Create and push a single tag: ```bash - git tag v0.1.1 - git push origin v0.1.1 + git tag v0.1.2 + git push origin v0.1.2 ``` 5. `release.yml` will: - Extract the version from the tag diff --git a/Cargo.lock b/Cargo.lock index dae1e72..bfc5710 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2899,7 +2899,7 @@ checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" [[package]] name = "xtax" -version = "0.1.1" +version = "0.1.2" dependencies = [ "xtax-blob-storage", "xtax-encryption", @@ -2907,7 +2907,7 @@ dependencies = [ [[package]] name = "xtax-blob-storage" -version = "0.1.1" +version = "0.1.2" dependencies = [ "async-trait", "aws-config", @@ -2928,7 +2928,7 @@ dependencies = [ [[package]] name = "xtax-encryption" -version = "0.1.1" +version = "0.1.2" dependencies = [ "async-trait", "thiserror", diff --git a/Cargo.toml b/Cargo.toml index eda5bd4..3b58890 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtax" -version = "0.1.1" +version = "0.1.2" edition.workspace = true rust-version.workspace = true license.workspace = true @@ -30,8 +30,8 @@ encryption = ["dep:xtax-encryption"] full = ["blob-storage-full", "encryption"] [dependencies] -xtax-blob-storage = { version = "0.1.1", path = "crates/xtax-blob-storage", optional = true, default-features = false } -xtax-encryption = { version = "0.1.1", path = "crates/xtax-encryption", optional = true } +xtax-blob-storage = { version = "0.1.2", path = "crates/xtax-blob-storage", optional = true, default-features = false } +xtax-encryption = { version = "0.1.2", path = "crates/xtax-encryption", optional = true } [workspace] members = [ diff --git a/crates/xtax-blob-storage/Cargo.toml b/crates/xtax-blob-storage/Cargo.toml index 9ebc140..613c28c 100644 --- a/crates/xtax-blob-storage/Cargo.toml +++ b/crates/xtax-blob-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtax-blob-storage" -version = "0.1.1" +version = "0.1.2" edition.workspace = true rust-version.workspace = true license.workspace = true @@ -23,7 +23,7 @@ fs = ["tokio/fs"] s3 = ["dep:aws-sdk-s3", "dep:aws-smithy-types", "dep:aws-config"] [dependencies] -xtax-encryption = { version = "0.1.1", path = "../xtax-encryption" } +xtax-encryption = { version = "0.1.2", path = "../xtax-encryption" } async-trait = "0.1" tracing = { version = "0.1", features = ["attributes"] } tokio = { version = "1.52", features = ["io-util", "rt", "time", "sync", "macros"] } diff --git a/crates/xtax-blob-storage/README.md b/crates/xtax-blob-storage/README.md index b4f2a30..9c83939 100644 --- a/crates/xtax-blob-storage/README.md +++ b/crates/xtax-blob-storage/README.md @@ -16,7 +16,7 @@ below. ## Status -**v0.1.0 — Experimental / learning project.** Not production-ready. +**Experimental / learning project.** Not production-ready. ## Motivation diff --git a/crates/xtax-blob-storage/docs/index.md b/crates/xtax-blob-storage/docs/index.md index 46f0611..0303fe6 100644 --- a/crates/xtax-blob-storage/docs/index.md +++ b/crates/xtax-blob-storage/docs/index.md @@ -14,4 +14,4 @@ ## Status -**v0.1.0 — Experimental / learning project.** Not production-ready. \ No newline at end of file +**v0.1.2 — Experimental / learning project.** Not production-ready. diff --git a/crates/xtax-blob-storage/src/lib.rs b/crates/xtax-blob-storage/src/lib.rs index 191c8b7..fd639b9 100644 --- a/crates/xtax-blob-storage/src/lib.rs +++ b/crates/xtax-blob-storage/src/lib.rs @@ -11,7 +11,7 @@ //! //! ## Status //! -//! **v0.1.0 — Experimental / learning project.** Not production-ready. +//! **Experimental / learning project.** Not production-ready. //! //! ## Architecture //! diff --git a/crates/xtax-encryption/Cargo.toml b/crates/xtax-encryption/Cargo.toml index 50ef4a3..d6792a2 100644 --- a/crates/xtax-encryption/Cargo.toml +++ b/crates/xtax-encryption/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtax-encryption" -version = "0.1.1" +version = "0.1.2" edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/xtax-encryption/README.md b/crates/xtax-encryption/README.md index 8b93558..5276c74 100644 --- a/crates/xtax-encryption/README.md +++ b/crates/xtax-encryption/README.md @@ -16,7 +16,7 @@ encryption layer with detached headers. ## Status -**v0.1.0 — Experimental / learning project.** Not production-ready. +**v0.1.2 — Experimental / learning project.** Not production-ready. ## Design