Skip to content

Commit

Permalink
chore(all): prepare release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Oct 15, 2016
1 parent 8dd67c2 commit 6652ea2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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-metadata",
"version": "1.0.1",
"version": "1.0.2",
"description": "Utilities for reading and writing the metadata of JavaScript functions.",
"keywords": [
"aurelia",
Expand Down
4 changes: 2 additions & 2 deletions dist/aurelia-metadata.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ export declare interface DecoratorApplicator {
* Applies the decorators to the target.
* @param target The target.
* @param key If applying to a method, the member name.
* @param key If applying to a method, you may supply an initial descriptor to pass to the decorators.
* @param descriptor If applying to a method, you may supply an initial descriptor to pass to the decorators.
*/
on(target: any, key?: string, descriptor?: Object): any;
on(target: any, key?: string, descriptor?: PropertyDescriptor): any;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions dist/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ interface DecoratorApplicator {
* Applies the decorators to the target.
* @param target The target.
* @param key If applying to a method, the member name.
* @param key If applying to a method, you may supply an initial descriptor to pass to the decorators.
* @param descriptor If applying to a method, you may supply an initial descriptor to pass to the decorators.
*/
on(target: any, key?: string, descriptor?: Object): any;
on(target: any, key?: string, descriptor?: PropertyDescriptor): any;
}

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-metadata",
"version": "1.0.1",
"version": "1.0.2",
"description": "Utilities for reading and writing the metadata of JavaScript functions.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 6652ea2

Please sign in to comment.