From fceab201054d58bd5cc100434984bf42ac7e63d0 Mon Sep 17 00:00:00 2001 From: Alex Kladov Date: Mon, 23 Dec 2024 13:57:55 +0000 Subject: [PATCH] v0.3.0-pre.2 --- CHANGELOG.md | 2 +- Cargo.toml | 4 ++-- xshell-macros/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4b4235..be414b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 0.3.0-pre.1 +## 0.3.0-pre.2 A major release with significant changes to the API: diff --git a/Cargo.toml b/Cargo.toml index 7740c76..f3dd4f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "xshell" description = "Utilities for quick shell scripting in Rust" categories = ["development-tools::build-utils", "filesystem"] -version = "0.3.0-pre.1" # also update xshell-macros/Cargo.toml and CHANGELOG.md +version = "0.3.0-pre.2" # also update xshell-macros/Cargo.toml and CHANGELOG.md license = "MIT OR Apache-2.0" repository = "https://github.com/matklad/xshell" authors = ["Alex Kladov "] @@ -14,7 +14,7 @@ exclude = [".github/", "bors.toml", "rustfmt.toml", "cbench", "mock_bin/"] [workspace] [dependencies] -xshell-macros = { version = "=0.3.0-pre.1", path = "./xshell-macros" } +xshell-macros = { version = "=0.3.0-pre.2", path = "./xshell-macros" } [dev-dependencies] anyhow = "1.0.56" diff --git a/xshell-macros/Cargo.toml b/xshell-macros/Cargo.toml index 796cc2a..edda86c 100644 --- a/xshell-macros/Cargo.toml +++ b/xshell-macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "xshell-macros" description = "Private implementation detail of xshell crate" -version = "0.3.0-pre.1" +version = "0.3.0-pre.2" license = "MIT OR Apache-2.0" repository = "https://github.com/matklad/xshell" authors = ["Aleksey Kladov "]