chi-datapackage
Advanced tools
Comparing version 2.1.0 to 2.1.1
@@ -9,2 +9,5 @@ CHANGELOG | ||
## 2.1.1 (2016-08-09) | ||
* Fixed bug in DataPackageService:normalizeResource | ||
## 2.1.0 (2016-08-09) | ||
@@ -11,0 +14,0 @@ * Added strict ISO 8601 UTC date and time types |
@@ -38,4 +38,4 @@ 'use strict'; | ||
key: 'normalizeResource', | ||
value: function normalizeResource(p) { | ||
return this.normalize.resource(p); | ||
value: function normalizeResource(p, r) { | ||
return this.normalize.resource(p, r); | ||
} | ||
@@ -42,0 +42,0 @@ }, { |
{ | ||
"name": "chi-datapackage", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Normalize datapackage and datapackage resources", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -29,4 +29,4 @@ 'use strict'; | ||
normalizeResource (p) { | ||
return this.normalize.resource(p); | ||
normalizeResource (p, r) { | ||
return this.normalize.resource(p, r); | ||
} | ||
@@ -33,0 +33,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
37931