Skip to content

Commit

Permalink
deps: Upgrade to Rust v1.81. (#1643)
Browse files Browse the repository at this point in the history
* Update rust.

* Update changelog.

* Add version.
  • Loading branch information
milesj authored Sep 5, 2024
1 parent d24741a commit 673d833
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
9 changes: 9 additions & 0 deletions .yarn/versions/aed2ed01.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
releases:
"@moonrepo/cli": patch
"@moonrepo/core-linux-arm64-gnu": patch
"@moonrepo/core-linux-arm64-musl": patch
"@moonrepo/core-linux-x64-gnu": patch
"@moonrepo/core-linux-x64-musl": patch
"@moonrepo/core-macos-arm64": patch
"@moonrepo/core-macos-x64": patch
"@moonrepo/core-windows-x64-msvc": patch
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

#### ⚙️ Internal

- Updated Rust to v1.81.

## 1.28.0

#### 💥 Breaking
Expand Down
6 changes: 3 additions & 3 deletions crates/args/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ where

if has_special_chars
// env var
|| bytes.starts_with(&[b'$'])
|| bytes.starts_with(b"$")
// already quoted
|| bytes.starts_with(&[b'\''])
|| bytes.starts_with(&[b'"'])
|| bytes.starts_with(b"'")
|| bytes.starts_with(b"\"")
// glob expansion
|| bytes.contains(&b'*')
|| bytes.contains(&b'[')
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
profile = "default"
channel = "1.80.0"
channel = "1.81.0"

0 comments on commit 673d833

Please sign in to comment.