Skip to content

Commit

Permalink
bump msrv to 1.81
Browse files Browse the repository at this point in the history
  • Loading branch information
pvichivanives committed Oct 7, 2024
1 parent 27a37de commit 36970c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
include:
- rust: 1.79.0 # MSRV, sometimes it changes because of compiler test issues
- rust: 1.81.0 # MSRV, sometimes it changes because of compiler test issues
- rust: stable
steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.19 (unreleased)

- Swap to using proc-macro-error-2 instead of proc-macro-error for Syn
- Bumped MSRV to 1.81 because of error naming changes.

## 0.18.2 (unreleased)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ error[E0433]: failed to resolve: use of undeclared crate or module `validator_ot
9 | #[validate(crate = "validator_other")]
| ^^^^^^^^^^^^^^^^^ use of undeclared crate or module `validator_other`
|
help: consider importing one of these items
help: consider importing one of these structs
|
4 + use crate::validator_renamed::ValidationErrors;
|
Expand All @@ -23,7 +23,7 @@ error[E0433]: failed to resolve: use of undeclared crate or module `validator_ot
9 | #[validate(crate = "validator_other")]
| ^^^^^^^^^^^^^^^^^ use of undeclared crate or module `validator_other`
|
help: consider importing one of these items
help: consider importing one of these structs
|
4 + use crate::validator_renamed::ValidationError;
|
Expand Down

0 comments on commit 36970c2

Please sign in to comment.