Update MSRV to 1.59.0

This commit is contained in:
Sunli 2022-08-29 13:54:36 +08:00
parent d31cef270b
commit 9ff4307cc5
3 changed files with 9 additions and 2 deletions

View File

@ -43,7 +43,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
include: include:
- { rust: 1.57.0, os: ubuntu-latest } - { rust: 1.59.0, os: ubuntu-latest }
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2

View File

@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
# [4.0.12] 2022-08-24
- Update MSRV to `1.59.0`
- Support `@specifiedBy` directive in SDL export [#1041](https://github.com/async-graphql/async-graphql/pull/1041)
- Add GraphiQL v2 [#1044](https://github.com/async-graphql/async-graphql/pull/1044)
- Export SDL: consistently avoid trailing spaces [#1043](https://github.com/async-graphql/async-graphql/pull/1043)
# [4.0.11] 2022-08-23 # [4.0.11] 2022-08-23
- Define `override` directive on fields [#1029](https://github.com/async-graphql/async-graphql/pull/1029) - Define `override` directive on fields [#1029](https://github.com/async-graphql/async-graphql/pull/1029)

View File

@ -34,7 +34,7 @@
* [Docs](https://docs.rs/async-graphql) * [Docs](https://docs.rs/async-graphql)
* [GitHub repository](https://github.com/async-graphql/async-graphql) * [GitHub repository](https://github.com/async-graphql/async-graphql)
* [Cargo package](https://crates.io/crates/async-graphql) * [Cargo package](https://crates.io/crates/async-graphql)
* Minimum supported Rust version: 1.57.0 or later * Minimum supported Rust version: 1.59.0 or later
## Safety ## Safety