Update to 3.0.1

This commit is contained in:
Sean Lilley 2019-03-08 09:55:08 -05:00
parent ebd7d73a21
commit cb32c549e1
2 changed files with 10 additions and 6 deletions

View File

@ -1,6 +1,10 @@
Change Log Change Log
========== ==========
### 3.0.1 2019-03-08
* Fixed handling of materials that don't have names. [#173](https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/173)
### 3.0.0 2018-12-05 ### 3.0.0 2018-12-05
* Breaking changes * Breaking changes

View File

@ -1,6 +1,6 @@
{ {
"name": "obj2gltf", "name": "obj2gltf",
"version": "3.0.0", "version": "3.0.1",
"description": "Convert OBJ model format to glTF", "description": "Convert OBJ model format to glTF",
"license": "Apache-2.0", "license": "Apache-2.0",
"contributors": [ "contributors": [
@ -27,23 +27,23 @@
}, },
"dependencies": { "dependencies": {
"bluebird": "^3.5.3", "bluebird": "^3.5.3",
"cesium": "^1.54.0", "cesium": "^1.55.0",
"fs-extra": "^7.0.1", "fs-extra": "^7.0.1",
"jpeg-js": "^0.3.4", "jpeg-js": "^0.3.4",
"mime": "^2.4.0", "mime": "^2.4.0",
"pngjs": "^3.3.3", "pngjs": "^3.3.3",
"yargs": "^13.1.0" "yargs": "^13.2.2"
}, },
"devDependencies": { "devDependencies": {
"cloc": "^2.4.0", "cloc": "^2.4.0",
"coveralls": "^3.0.2", "coveralls": "^3.0.3",
"eslint": "^5.13.0", "eslint": "^5.15.1",
"eslint-config-cesium": "^6.0.1", "eslint-config-cesium": "^6.0.1",
"gulp": "^4.0.0", "gulp": "^4.0.0",
"jasmine": "^3.3.1", "jasmine": "^3.3.1",
"jasmine-spec-reporter": "^4.2.1", "jasmine-spec-reporter": "^4.2.1",
"jsdoc": "^3.5.5", "jsdoc": "^3.5.5",
"nyc": "^13.2.0", "nyc": "^13.3.0",
"open": "^0.0.5", "open": "^0.0.5",
"requirejs": "^2.3.6" "requirejs": "^2.3.6"
}, },