Skip to content

Commit

Permalink
need Rust 1.66 for blocking cargo publish
Browse files Browse the repository at this point in the history
  • Loading branch information
matklad committed Jul 11, 2023
1 parent a69a294 commit cdd48d0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
fetch-depth: 0
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.59.0
toolchain: 1.59.0 # Check _only_ MSRV for simplicity.
profile: minimal
components: rustfmt
override: true
Expand All @@ -43,7 +43,7 @@ jobs:
fetch-depth: 0
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.59.0
toolchain: stable
profile: minimal
components: rustfmt
override: true
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.2.4
## 0.2.5

- Improve error message when a working directory for `cmd!` does not exist.

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "xshell"
description = "Utilities for quick shell scripting in Rust"
categories = ["development-tools::build-utils", "filesystem"]
version = "0.2.4" # also update xshell-macros/Cargo.toml and CHANGELOG.md
version = "0.2.5" # also update xshell-macros/Cargo.toml and CHANGELOG.md
license = "MIT OR Apache-2.0"
repository = "https://github.com/matklad/xshell"
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
Expand All @@ -14,7 +14,7 @@ exclude = [".github/", "bors.toml", "rustfmt.toml", "cbench", "mock_bin/"]
[workspace]

[dependencies]
xshell-macros = { version = "=0.2.4", path = "./xshell-macros" }
xshell-macros = { version = "=0.2.5", path = "./xshell-macros" }

[dev-dependencies]
anyhow = "1.0.56"
2 changes: 1 addition & 1 deletion xshell-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "xshell-macros"
description = "Private implementation detail of xshell crate"
version = "0.2.4"
version = "0.2.5"
license = "MIT OR Apache-2.0"
repository = "https://github.com/matklad/xshell"
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
Expand Down

0 comments on commit cdd48d0

Please sign in to comment.