Skip to content

Commit 5496758

Browse files
authored
allow build version 0.12.0 (#299)
1 parent 696d570 commit 5496758

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
language: dart
22
sudo: false
3+
# Unpin SDK after https://github.com/dart-lang/sdk/issues/31940
34
dart:
4-
- dev
5+
- "dev/release/2.0.0-dev.17.0"
56
- stable
67
- 1.22.1
78
dart_task:

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.7.4-dev
1+
## 0.7.4
22

33
* Added `typeNameOf`, which is a safe way to get the name of a `DartType`,
44
even when the type is a `FunctionType`, which has a `null` name in newer
@@ -8,6 +8,8 @@
88
`export` path necessary to reach the provided URL from the current library.
99
Also added `pathToAsset` and `pathToElement` as convenience functions.
1010

11+
* Expanded `package:build` support to allow version `0.12.0`.
12+
1113
## 0.7.3
1214

1315
* Allow null and empty outputs form `GeneratorForAnnotation`.

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
name: source_gen
2-
version: 0.7.3
2+
version: 0.7.4
33
author: Dart Team <[email protected]>
44
description: Automated source code generation for Dart.
55
homepage: https://github.com/dart-lang/source_gen
66
environment:
77
sdk: '>=1.22.1 <2.0.0'
88
dependencies:
99
analyzer: '>=0.29.10 <0.31.0'
10-
build: '>=0.10.0 <0.12.0'
10+
build: '>=0.10.0 <0.13.0'
1111
dart_style: '>=0.1.7 <2.0.0'
1212
meta: ^1.1.0
1313
path: ^1.3.2
1414
source_span: ^1.4.0
1515
dev_dependencies:
16-
build_test: ^0.9.0
16+
build_test: ">0.9.0 <0.11.0"
1717
collection: ^1.1.2
1818
cli_util: '>=0.1.0 <0.2.0'
1919
logging: ^0.11.3

0 commit comments

Comments
 (0)