Bump minimum rust version to 1.34

This commit is contained in:
Christoph Herzog 2019-05-07 12:20:48 +02:00
parent 67b28c5e89
commit 3cc142bfbc
No known key found for this signature in database
GPG key ID: DAFF71D48B493238
3 changed files with 8 additions and 7 deletions

View file

@ -5,9 +5,9 @@ rust:
- beta
- nightly
# TODO: re-enable once new versions are released.
# Prevent accidentally breaking older Rust versions
- 1.32.0
- 1.31.0
# - 1.33.0
matrix:
include:

View file

@ -10,10 +10,11 @@ jobs:
rustup_toolchain: beta
nightly:
rustup_toolchain: nightly
minimum_supported_version_plus_one:
rustup_toolchain: 1.32.0
minimum_supported_version:
rustup_toolchain: 1.31.0
# TODO: re-enable once new versions are released.
# minimum_supported_version_plus_one:
# rustup_toolchain: 1.32.0
#minimum_supported_version:
# rustup_toolchain: 1.33.0
steps:
- ${{ if ne(parameters.name, 'Windows') }}:
# Linux and macOS.

View file

@ -17,7 +17,7 @@ This should not have any impact on your code, since juniper already was 2018 com
### Other changes
- The minimum required Rust version is now `1.31.0`.
- The minimum required Rust version is now `1.34.0`.
- The `ScalarValue` custom derive has been renamed to `GraphQLScalarValue`.
- Added built-in support for the canonical schema introspection query via
`juniper::introspect()`.