Skip to content
This repository has been archived by the owner on Dec 19, 2017. It is now read-only.

Commit

Permalink
add version constring on reflectable <0.3.4 until #651 is resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemac53 committed Nov 25, 2015
1 parent 6362db7 commit ae85726
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
19 changes: 11 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 1.0.0-rc.7
* Add version constraint on reflectable <0.3.4 until issue #651 is resolved.

#### 1.0.0-rc.6
* Add a test/example for `Templatizer` behavior.
* Fix a few minor strong mode type errors.
Expand All @@ -7,7 +10,7 @@

#### 1.0.0-rc.4
* Throw on `registered` and `beforeRegister` instance methods if they
are annotated with `@reflectable`.
are annotated with `@reflectable`.
* Added support for static `registered` and `beforeRegister` methods, which
will be invoked with the JS prototype for the element at registration time.
These are supported for both behaviors and elements.
Expand Down Expand Up @@ -69,10 +72,10 @@
* Added `@whenPolymerReady` annotation for functions. This will call the
function once `Polymer.onReady` completes, reducing the boilerplate in entry
points to the following:

import 'package:polymer/polymer.dart';
export 'package:polymer/init.dart';

@whenPolymerReady
void onReady() {
/// Custom setup code here.
Expand Down Expand Up @@ -116,7 +119,7 @@
realMain() => ...

This should be translated to:

main() => initPolymer().then((zone) => zone.run(realMain));
realMain() => ...

Expand Down Expand Up @@ -175,7 +178,7 @@
* Fix logic for detecting when the compiler is linting within an
`auto-binding-dart` template element. This removes some false positive
warnings.

#### 0.15.3
* Narrow the constraint on observe to ensure that new features are reflected
in polymer's version.
Expand Down Expand Up @@ -296,8 +299,8 @@

#### 0.13.0
* Update to match polymer 0.3.5 ([polymer-dev#5d00e4b][5d00e4b]). There was a
breaking change in the web_components package where selecting non-rendered
elements doesn't work, but it shouldn't affect most people. See
breaking change in the web_components package where selecting non-rendered
elements doesn't work, but it shouldn't affect most people. See
https://github.com/Polymer/ShadowDOM/issues/495.

#### 0.12.2+1
Expand Down Expand Up @@ -357,7 +360,7 @@
web/foo.css: true
packages/foo/bar.css: true


* Bug fix for http://dartbug.com/20286. Bindings in url attributes will no
longer throw an error.

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: polymer
version: 1.0.0-rc.6
version: 1.0.0-rc.7
author: Polymer.dart Authors <web-ui-dev@dartlang.org>
description: >
Polymer.dart is a new type of library for the web, built on top of Web
Expand All @@ -12,7 +12,7 @@ dependencies:
html: ^0.12.0
initialize: '>=0.5.1+3 <0.7.0'
polymer_interop: ^1.0.0-rc.5
reflectable: ^0.3.3
reflectable: '>=0.3.3 <0.3.4'
test: ^0.12.3
web_components: '>=0.11.3 <0.13.0'
transformers:
Expand Down

0 comments on commit ae85726

Please sign in to comment.