Skip to content

Commit eb0029a

Browse files
committed
🎉 Version bump
1 parent dcfbf0a commit eb0029a

File tree

2 files changed

+35
-21
lines changed

2 files changed

+35
-21
lines changed

CHANGELOG.md

+30-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
1+
## [0.9.2] - 2 September 2018
2+
3+
### Breaking changes
4+
5+
n/a
6+
7+
#### Fixes / Enhancements
8+
9+
- Upgrade dependencies. @HofmannZ
10+
11+
#### Docs
12+
13+
- Added a refrence to our next major release. @HofmannZ
14+
115
## [0.9.1] - August 30 2018
216

3-
### Breaking change
17+
### Breaking changes
418

519
n/a
620

@@ -15,7 +29,7 @@ n/a
1529

1630
## [0.9.0] - August 23 2018
1731

18-
### Breaking change
32+
### Breaking changes
1933

2034
n/a
2135

@@ -32,7 +46,7 @@ n/a
3246

3347
## [0.8.0] - August 10 2018
3448

35-
### Breaking change
49+
### Breaking changes
3650

3751
n/a
3852

@@ -47,7 +61,7 @@ n/a
4761

4862
## [0.7.1] - August 3 2018
4963

50-
### Breaking change
64+
### Breaking changes
5165

5266
n/a
5367

@@ -61,7 +75,7 @@ n/a
6175

6276
## [0.7.0] - July 22 2018
6377

64-
### Breaking change
78+
### Breaking changes
6579

6680
n/a
6781

@@ -77,7 +91,7 @@ n/a
7791

7892
## [0.6.0] - July 19 2018
7993

80-
### Breaking change
94+
### Breaking changes
8195

8296
- The library now requires your app to be wrapped with the `GraphqlProvider` widget. @HofmannZ
8397
- The global `client` variable is no longer available. Instead use the `GraphqlConsumer` widget. @HofmannZ
@@ -115,7 +129,7 @@ Client client = GraphqlProvider.of(context).value;
115129

116130
## [0.5.4] - July 17 2018
117131

118-
### Breaking change
132+
### Breaking changes
119133

120134
n/a
121135

@@ -131,7 +145,7 @@ n/a
131145

132146
## [0.5.3] - July 13 2018
133147

134-
### Breaking change
148+
### Breaking changes
135149

136150
n/a
137151

@@ -147,7 +161,7 @@ n/a
147161

148162
## [0.5.2] - July 11 2018
149163

150-
### Breaking change
164+
### Breaking changes
151165

152166
n/a
153167

@@ -161,7 +175,7 @@ n/a
161175

162176
## [0.5.1] - June 29 2018
163177

164-
### Breaking change
178+
### Breaking changes
165179

166180
n/a
167181

@@ -175,7 +189,7 @@ n/a
175189

176190
## [0.5.0] - June 25 2018
177191

178-
### Breaking change
192+
### Breaking changes
179193

180194
n/a
181195

@@ -191,7 +205,7 @@ n/a
191205

192206
## [0.4.1] - June 22 2018
193207

194-
### Breaking change
208+
### Breaking changes
195209

196210
n/a
197211

@@ -205,7 +219,7 @@ n/a
205219

206220
## [0.4.0] - June 21 2018
207221

208-
### Breaking change
222+
### Breaking changes
209223

210224
- The Client now requires a from of cache.
211225
- The name of the `execute` method on the `Client` class changed to `query`.
@@ -224,7 +238,7 @@ n/a
224238

225239
## [0.3.0] - June 16 2018
226240

227-
### Breaking change
241+
### Breaking changes
228242

229243
- Changed data type to `Map` instaid of `Object` to be more explicit.
230244

@@ -240,7 +254,7 @@ n/a
240254

241255
## [0.2.0] - June 15 2018
242256

243-
### Breaking change
257+
### Breaking changes
244258

245259
- Changed query widget `polling` argument to `pollInterval`, following the [react-apollo](https://github.com/apollographql/react-apollo) api.
246260

@@ -256,7 +270,7 @@ n/a
256270

257271
My colleague and I created a simple implementation of a GraphQL Client for Flutter. (Many thanks to Eus Dima, for his work on the initial client.)
258272

259-
### Breaking change
273+
### Breaking changes
260274

261275
n/a
262276

pubspec.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: graphql_flutter
22
description: A GraphQL client for Flutter, bringing all the features from a modern GraphQL client to one easy to use package.
3-
version: 0.9.1
3+
version: 0.9.2
44
authors:
55
- Eus Dima <[email protected]>
66
- Zino Hofmann <[email protected]>
@@ -9,14 +9,14 @@ homepage: https://github.com/zino-app/graphql-flutter
99
dependencies:
1010
flutter:
1111
sdk: flutter
12-
http: ^0.11.0
13-
path_provider: ^0.4.0
14-
uuid: ^1.0.0
12+
http: ^0.11.3
13+
path_provider: ^0.4.1
14+
uuid: ^1.0.3
1515

1616
dev_dependencies:
1717
flutter_test:
1818
sdk: flutter
1919
test: ^1.3.0
2020

2121
environment:
22-
sdk: ">=2.0.0-dev.52.0 <3.0.0"
22+
sdk: ">=2.0.0 <3.0.0"

0 commit comments

Comments
 (0)