Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-rc.1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jul 12, 2016
1 parent 6d639fc commit 6cffa71
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 3 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.0-rc.1.0.0",
"version": "1.0.0-rc.1.0.1",
"description": "Utilities for reading and writing the metadata of JavaScript functions.",
"keywords": [
"aurelia",
Expand Down
1 change: 1 addition & 0 deletions dist/amd/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ define(['exports', 'aurelia-pal'], function (exports, _aureliaPal) {
var metadata = exports.metadata = {
resource: 'aurelia:resource',
paramTypes: 'design:paramtypes',
propertyType: 'design:type',
properties: 'design:properties',
get: function get(metadataKey, target, targetKey) {
if (!target) {
Expand Down
7 changes: 7 additions & 0 deletions dist/aurelia-metadata.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import {

/**
* Helpers for working with metadata on functions.
*
* Note for the Typescript to ES5 transpiler: Due to the non-standard compliant implementation of 'extends', these methods, when applied to derived classes, will operate on the parent class and not on the child class. This can be circumvented by either transpiling to ES2015 (ES6) or by making the targetKey parameter class-specific eg. by using target.name for the targetKey parameter.
*/
export declare interface MetadataType {

Expand All @@ -17,6 +19,11 @@ export declare interface MetadataType {
*/
paramTypes: string;

/**
* The metadata key representing object property type information.
*/
propertyType: string;

/**
* The metadata key representing property information.
*/
Expand Down
7 changes: 7 additions & 0 deletions dist/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import {PLATFORM} from 'aurelia-pal';

/**
* Helpers for working with metadata on functions.
*
* Note for the Typescript to ES5 transpiler: Due to the non-standard compliant implementation of 'extends', these methods, when applied to derived classes, will operate on the parent class and not on the child class. This can be circumvented by either transpiling to ES2015 (ES6) or by making the targetKey parameter class-specific eg. by using target.name for the targetKey parameter.
*/
interface MetadataType {
/**
Expand All @@ -13,6 +15,10 @@ interface MetadataType {
*/
paramTypes: string;
/**
* The metadata key representing object property type information.
*/
propertyType: string;
/**
* The metadata key representing property information.
*/
properties: string;
Expand Down Expand Up @@ -53,6 +59,7 @@ interface MetadataType {
export const metadata: MetadataType = {
resource: 'aurelia:resource',
paramTypes: 'design:paramtypes',
propertyType: 'design:type',
properties: 'design:properties',
get(metadataKey: string, target: Function, targetKey?: string): Object {
if (!target) { return undefined; }
Expand Down
1 change: 1 addition & 0 deletions dist/commonjs/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ var _aureliaPal = require('aurelia-pal');
var metadata = exports.metadata = {
resource: 'aurelia:resource',
paramTypes: 'design:paramtypes',
propertyType: 'design:type',
properties: 'design:properties',
get: function get(metadataKey, target, targetKey) {
if (!target) {
Expand Down
1 change: 1 addition & 0 deletions dist/es2015/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { PLATFORM } from 'aurelia-pal';
export const metadata = {
resource: 'aurelia:resource',
paramTypes: 'design:paramtypes',
propertyType: 'design:type',
properties: 'design:properties',
get(metadataKey, target, targetKey) {
if (!target) {
Expand Down
1 change: 1 addition & 0 deletions dist/native-modules/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { PLATFORM } from 'aurelia-pal';
export var metadata = {
resource: 'aurelia:resource',
paramTypes: 'design:paramtypes',
propertyType: 'design:type',
properties: 'design:properties',
get: function get(metadataKey, target, targetKey) {
if (!target) {
Expand Down
1 change: 1 addition & 0 deletions dist/system/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ System.register(['aurelia-pal'], function (_export, _context) {
_export('metadata', metadata = {
resource: 'aurelia:resource',
paramTypes: 'design:paramtypes',
propertyType: 'design:type',
properties: 'design:properties',
get: function get(metadataKey, target, targetKey) {
if (!target) {
Expand Down
5 changes: 5 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<a name="1.0.0-rc.1.0.1"></a>
# [1.0.0-rc.1.0.1](https://github.com/aurelia/metadata/compare/1.0.0-rc.1.0.0...v1.0.0-rc.1.0.1) (2016-07-12)



<a name="1.0.0-rc.1.0.0"></a>
# [1.0.0-rc.1.0.0](https://github.com/aurelia/metadata/compare/1.0.0-beta.2.0.1...v1.0.0-rc.1.0.0) (2016-06-22)

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.0-rc.1.0.0",
"version": "1.0.0-rc.1.0.1",
"description": "Utilities for reading and writing the metadata of JavaScript functions.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 6cffa71

Please sign in to comment.