Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
chore(pubspec): Widen the analyzer constraint
Browse files Browse the repository at this point in the history
Allow use of package:analyzer <0.25.0. Analyzer earlier than 0.24.0 has
issues with parsing `async` and `await`, this allows the use of
Observable with code that needs process such code with analyzer.
  • Loading branch information
Tim Blasi committed Mar 17, 2015
1 parent 4503e76 commit b078ba7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 0.13.0+1
* Widen the constraint on analyzer.

#### 0.13.0
* Don't output log files by default in release mode, and provide option to
turn them off entirely.
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: observe
version: 0.13.0
version: 0.13.0+1
author: Polymer.dart Authors <web-ui-dev@dartlang.org>
description: >
Observable properties and objects for use in template_binding.
Expand All @@ -9,7 +9,7 @@ description: >
user input into the DOM is immediately assigned to the model.
homepage: https://www.dartlang.org/polymer-dart/
dependencies:
analyzer: '>=0.15.6 <0.23.0'
analyzer: '>=0.15.6 <0.25.0'
barback: '>=0.14.2 <0.16.0'
logging: '>=0.9.0 <0.10.0'
path: '>=0.9.0 <2.0.0'
Expand Down

0 comments on commit b078ba7

Please sign in to comment.