From bf15563662dfbcffd7e674ec5a212d23605588b1 Mon Sep 17 00:00:00 2001 From: Xerrion <1850632+Xerrion@users.noreply.github.com> Date: Mon, 27 Jul 2026 10:19:24 +0000 Subject: [PATCH] chore(release): 0.2.1 --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 4 ++-- crates/casc-cli/Cargo.toml | 4 ++-- crates/casc-lib/Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d89419..093a922 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.2.1] - 2026-07-27 + +### Miscellaneous + +- Update dependencies to latest version (#2) +- *(deps)* Bump quinn-proto from 0.11.13 to 0.11.14 (#3) +- *(deps)* Bump rustls-webpki from 0.103.9 to 0.103.10 (#5) + ## [0.2.0] - 2026-03-01 ### Bug Fixes @@ -18,6 +26,7 @@ All notable changes to this project will be documented in this file. - Changelog workflow creates PR instead of pushing directly - Auto-versioning release flow with git-cliff bump and PR-based tagging - Use plain semver tags instead of v-prefixed tags +- *(release)* 0.2.0 (#1) ### Styling diff --git a/Cargo.lock b/Cargo.lock index ba32cd1..93f04f6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -130,7 +130,7 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" [[package]] name = "casc-cli" -version = "0.2.0" +version = "0.2.1" dependencies = [ "casc-lib", "clap", @@ -141,7 +141,7 @@ dependencies = [ [[package]] name = "casc-lib" -version = "0.2.0" +version = "0.2.1" dependencies = [ "csv", "flate2", diff --git a/crates/casc-cli/Cargo.toml b/crates/casc-cli/Cargo.toml index 22230f7..7d9ee28 100644 --- a/crates/casc-cli/Cargo.toml +++ b/crates/casc-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "casc-cli" -version = "0.2.0" +version = "0.2.1" edition = "2024" description = "CLI tool for extracting files from World of Warcraft CASC archives" license = "MIT" @@ -16,7 +16,7 @@ name = "casc-extractor" path = "src/main.rs" [dependencies] -casc-lib = { path = "../casc-lib", version = "0.2.0" } +casc-lib = { path = "../casc-lib", version = "0.2.1" } clap = { version = "4.6", features = ["derive"] } indicatif = "0.18" tracing = "0.1" diff --git a/crates/casc-lib/Cargo.toml b/crates/casc-lib/Cargo.toml index c65c656..55594ac 100644 --- a/crates/casc-lib/Cargo.toml +++ b/crates/casc-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "casc-lib" -version = "0.2.0" +version = "0.2.1" edition = "2024" description = "Pure Rust library for reading World of Warcraft CASC archives" license = "MIT"