Update changelog, update MSRV to 1.45
This commit is contained in:
parent
76427ef384
commit
ba92234b3e
4 changed files with 10 additions and 8 deletions
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
@ -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 }}
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
# Changelog
|
||||
|
||||
## **in-dev**
|
||||
### Changed:
|
||||
- Derived `JsonSchema` now respects attributes on unit enum variants (https://github.com/GREsau/schemars/pull/152)
|
||||
- Minimum supported rust version is now 1.45.0
|
||||
|
||||
## [0.8.10] - 2022-05-17
|
||||
- Undo "Support generic default values in default attributes (https://github.com/GREsau/schemars/pull/83)" as it inadvertently introduced a breaking change (https://github.com/GREsau/schemars/issues/144)
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
[](https://github.com/GREsau/schemars/actions)
|
||||
[](https://crates.io/crates/schemars)
|
||||
[](https://docs.rs/schemars)
|
||||
[](https://blog.rust-lang.org/2019/08/15/Rust-1.37.0.html)
|
||||
[](https://blog.rust-lang.org/2020/07/16/Rust-1.45.0.html)
|
||||
|
||||
Generate JSON Schema documents from Rust code
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
msrv = "1.37.0"
|
||||
msrv = "1.45.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue