Skip to content

Commit

Permalink
chore(all): prepare release 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Sep 25, 2018
1 parent 5922e4c commit d81ad18
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 50 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-binding",
"version": "2.1.4",
"version": "2.1.5",
"description": "A modern databinding library for JavaScript and HTML.",
"license": "MIT",
"keywords": [
Expand Down
8 changes: 7 additions & 1 deletion dist/aurelia-binding.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export declare interface CollectionObserver {
/**
* Subscribe to collection mutation events.
*/
subscribe(callback: (changeRecords: Array<ICollectionObserverSplice<any>>) => void): Disposable;
subscribe(callback: (changeRecords: Array<ICollectionObserverSplice>) => void): Disposable;
}

/**
Expand Down Expand Up @@ -415,6 +415,12 @@ export declare class SelectValueObserver implements InternalPropertyObserver {
* Property observer for HTML Attributes.
*/
export declare class DataAttributeObserver implements InternalPropertyObserver {

constructor(
element: Element,
propertyName: string
);

/**
* Gets the property value.
*/
Expand Down
7 changes: 7 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<a name="2.1.5"></a>
## [2.1.5](https://github.com/aurelia/binding/compare/2.1.4...2.1.5) (2018-09-25)

### Bug Fixes

* Update constructor typings for DataAttributeObserver

<a name="2.1.4"></a>
## [2.1.4](https://github.com/aurelia/binding/compare/2.1.3...2.1.4) (2018-08-09)

Expand Down
2 changes: 1 addition & 1 deletion doc/api.json

Large diffs are not rendered by default.

48 changes: 1 addition & 47 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-binding",
"version": "2.1.4",
"version": "2.1.5",
"description": "A modern databinding library for JavaScript and HTML.",
"keywords": [
"aurelia",
Expand Down Expand Up @@ -95,51 +95,5 @@
"vinyl": "^1.1.1",
"vinyl-paths": "^2.1.0",
"yargs": "^4.8.1"
},
"aurelia": {
"documentation": {
"articles": [
{
"title": "Binding: Basics",
"href": "doc/article/en-US/binding-basics.md"
},
{
"title": "Binding: Class and Style",
"href": "doc/article/en-US/binding-class-and-style.md"
},
{
"title": "Binding: Checkboxes",
"href": "doc/article/en-US/binding-checkboxes.md"
},
{
"title": "Binding: Radios",
"href": "doc/article/en-US/binding-radios.md"
},
{
"title": "Binding: Selects",
"href": "doc/article/en-US/binding-selects.md"
},
{
"title": "Binding: Delegate vs Trigger",
"href": "doc/article/en-US/binding-delegate-vs-trigger.md"
},
{
"title": "Binding: Computed Properties",
"href": "doc/article/en-US/binding-computed-properties.md"
},
{
"title": "Binding: Binding Behaviors",
"href": "doc/article/en-US/binding-binding-behaviors.md"
},
{
"title": "Binding: Value Converters",
"href": "doc/article/en-US/binding-value-converters.md"
},
{
"title": "Binding: How it Works",
"href": "doc/article/en-US/binding-how-it-works.md"
}
]
}
}
}

0 comments on commit d81ad18

Please sign in to comment.