parser @ 1.1.1

This commit is contained in:
Tobe O 2018-10-23 12:01:05 -04:00
parent 0757dcabf0
commit 93d8a94fd4
3 changed files with 5 additions and 4 deletions

View file

@ -1,3 +1,6 @@
# 1.1.1
* Pubspec updates for Dart 2.
# 1.1.0 # 1.1.0
* Removed `GraphQLVisitor`. * Removed `GraphQLVisitor`.
* Enable parsing operations without an explicit * Enable parsing operations without an explicit

View file

@ -1,5 +1,5 @@
name: graphql_parser name: graphql_parser
version: 1.1.0 version: 1.1.1
description: Parses GraphQL queries and schemas. description: Parses GraphQL queries and schemas.
author: Tobe O <thosakwe@gmail.com> author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/angel-dart/graphql homepage: https://github.com/angel-dart/graphql
@ -11,4 +11,4 @@ dependencies:
string_scanner: ^1.0.0 string_scanner: ^1.0.0
dev_dependencies: dev_dependencies:
matcher: any matcher: any
test: ^0.12.0 test: ">=0.12.0 <2.0.0"

View file

@ -1,5 +1,3 @@
import 'package:graphql_parser/graphql_parser.dart'; import 'package:graphql_parser/graphql_parser.dart';
import 'package:matcher/matcher.dart';
import 'package:test/test.dart';
Parser parse(String text) => new Parser(scan(text)); Parser parse(String text) => new Parser(scan(text));