Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raise MSRV to 1.60.0 #430

Merged
merged 1 commit into from
Nov 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ common: &COMMON
task:
name: MSRV
container:
image: rust:1.45.0
env:
# CARGO_NET_GIT_FETCH_WITH_CLI is only necessary with Rust 1.45
CARGO_NET_GIT_FETCH_WITH_CLI: true
image: rust:1.60.0
<< : *COMMON
before_cache_script: rm -rf $CARGO_HOME/registry/index

Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Changed

- Raised MSRV to 1.45.0 because futures-task did.
([#407](https://github.com/asomers/mockall/pull/407))
- Raised MSRV to 1.60.0 because predicates-tree did.
([#430](https://github.com/asomers/mockall/pull/430))

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ See the [API docs](https://docs.rs/mockall) for more information.

# Minimum Supported Rust Version (MSRV)

Mockall is supported on Rust 1.45.0 and higher. Mockall's MSRV will not be
Mockall is supported on Rust 1.60.0 and higher. Mockall's MSRV will not be
changed in the future without bumping the major or minor version.

# License
Expand Down
2 changes: 1 addition & 1 deletion mockall/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ categories = ["development-tools::testing"]
keywords = ["mock", "mocking", "testing"]
documentation = "https://docs.rs/mockall"
edition = "2018"
rust-version = "1.45"
rust-version = "1.60"
description = """
A powerful mock object library for Rust.
"""
Expand Down