From 900db7a5fc2bd33b467e5104f5394a384b87aa28 Mon Sep 17 00:00:00 2001 From: Yulong Wang Date: Fri, 25 Jan 2019 18:01:54 -0800 Subject: [PATCH] 2019-01-25, Version 0.1.3 (#83) --- docs/operators.md | 4 ++-- package-lock.json | 15 ++++++++++----- package.json | 2 +- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/docs/operators.md b/docs/operators.md index 81077e7e..62bfb9a1 100644 --- a/docs/operators.md +++ b/docs/operators.md @@ -23,7 +23,7 @@ See [Compatibility](../README.md#Compatibility) for a list of the supported plat | [Equal](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Equal) | | | :heavy_check_mark: | | [Exp](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Exp) | :heavy_check_mark: | | :heavy_check_mark: | | [Floor](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Floor) | :heavy_check_mark: | | :heavy_check_mark: | -| [Gather](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Gather) | :heavy_check_mark: | | | +| [Gather](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Gather) | :heavy_check_mark: | | :heavy_check_mark: | | [Gemm](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Gemm) | | :heavy_check_mark: | :heavy_check_mark: | | [GlobalAveragePool](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#GlobalAveragePool) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | [GlobalMaxPool](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#GlobalMaxPool) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | @@ -64,5 +64,5 @@ See [Compatibility](../README.md#Compatibility) for a list of the supported plat | [Tanh](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Tanh) | :heavy_check_mark: | | :heavy_check_mark: | | [Tile](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Tile) | :heavy_check_mark: | | :heavy_check_mark: | | [Transpose](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Transpose) | :heavy_check_mark: | | :heavy_check_mark: | -| [Unsqueeze](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Unsqueeze) | :heavy_check_mark: | | | +| [Unsqueeze](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Unsqueeze) | :heavy_check_mark: | | :heavy_check_mark: | | [Xor](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Xor) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | diff --git a/package-lock.json b/package-lock.json index 2f02e5bb..95f3ef9a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "onnxjs", - "version": "0.1.2", + "version": "0.1.3", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -2739,7 +2739,8 @@ "ansi-regex": { "version": "2.1.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "aproba": { "version": "1.2.0", @@ -3154,7 +3155,8 @@ "safe-buffer": { "version": "5.1.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "safer-buffer": { "version": "2.1.2", @@ -3210,6 +3212,7 @@ "version": "3.0.1", "bundled": true, "dev": true, + "optional": true, "requires": { "ansi-regex": "^2.0.0" } @@ -3253,12 +3256,14 @@ "wrappy": { "version": "1.0.2", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "yallist": { "version": "3.0.2", "bundled": true, - "dev": true + "dev": true, + "optional": true } } }, diff --git a/package.json b/package.json index 13fb19ce..0a5945d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "onnxjs", - "version": "0.1.2", + "version": "0.1.3", "description": "A Javascript library for running ONNX models on browsers and on Node.js", "main": "./lib/api/index.js", "browser": "./dist/onnx.min.js",