Skip to content

Commit

Permalink
Raise MSRV to 1.65.0
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Salvador <[email protected]>
  • Loading branch information
otavio committed Jun 24, 2024
1 parent e2fc318 commit 68451a9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: 1.63.0 # MSRV
toolchain: 1.65.0 # MSRV
override: true
components: clippy

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
version:
- 1.63.0 # MSRV
- 1.65.0 # MSRV
- stable
- nightly

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
version:
- 1.63.0 # MSRV
- 1.65.0 # MSRV
- stable
- nightly

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
version:
- 1.63.0 # MSRV
- 1.65.0 # MSRV
- stable
- nightly
linkage:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## [Unreleased] - ReleaseDate

* Raise MSRV to 1.63.0
* Raise MSRV to 1.65.0
* Fix use slice::from_raw_parts only if size > 0 [#126]

[#126]: https://github.com/OSSystems/compress-tools-rs/pull/126
Expand Down
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
rust-toolchain = with rust.packages.${system};
let
msrvToolchain = toolchainOf {
channel = "1.63.0";
sha256 = "sha256-KXx+ID0y4mg2B3LHp7IyaiMrdexF6octADnAtFIOjrY=";
channel = "1.65.0";
sha256 = "sha256-DzNEaW724O8/B8844tt5AVHmSjSQ3cmzlU4BP90oRlY=";
};
in
combine [
Expand Down

0 comments on commit 68451a9

Please sign in to comment.