Update changelog, update MSRV to 1.45

This commit is contained in:
Graham Esau 2022-08-12 15:49:59 +01:00
parent 76427ef384
commit ba92234b3e
4 changed files with 10 additions and 8 deletions

View file

@ -8,14 +8,13 @@ jobs:
strategy:
matrix:
rust:
- 1.37.0
- 1.45.0
- stable
- beta
- nightly
include:
- rust: 1.37.0
# exclude ui_test as the output is slightly different in rustc 1.37
test_features: "--features impl_json_schema,chrono,indexmap,either,uuid08,smallvec,arrayvec05,enumset"
- rust: 1.45.0
test_features: "--all-features"
allow_failure: false
- rust: stable
test_features: "--all-features"
@ -38,8 +37,6 @@ jobs:
run: cargo check --verbose --no-default-features
continue-on-error: ${{ matrix.allow_failure }}
working-directory: ./schemars
- if: matrix.rust == '1.37.0'
run: cargo update -p indexmap --precise 1.6.2
- name: Run tests
run: cargo test --verbose ${{ matrix.test_features }} --no-fail-fast
continue-on-error: ${{ matrix.allow_failure }}