From 591beb58bf378c0cb89a1e1b7f0a6094ee2c4dda Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Tue, 3 Sep 2024 11:23:54 +0200 Subject: [PATCH] Bump version to `0.35.0` --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3623850..93649fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.35.0] 2024-09-03 +### Fixed +- Make `RUST_SCRIPT_BASE_PATH` report the correct path when `rust-script` executes with `--base-path` (#136). + ## [0.34.0] 2023-09-27 ### Added - Publish binaries on GitHub releases, for use with e.g. `cargo binstall`. diff --git a/Cargo.lock b/Cargo.lock index 2eb9294..7c5dcb1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -433,7 +433,7 @@ checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" [[package]] name = "rust-script" -version = "0.34.0" +version = "0.35.0" dependencies = [ "clap", "dirs", diff --git a/Cargo.toml b/Cargo.toml index 3ec5c39..4c96986 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-script" -version = "0.34.0" +version = "0.35.0" edition = "2021" rust-version = "1.64" authors = ["Fredrik Fornwall "]