8000 0.17.1 · arrayfire/arrayfire-js@72b0f93 · GitHub
[go: up one dir, main page]

Skip to content

Commit 72b0f93

Browse files
committed
0.17.1
1 parent 565984e commit 72b0f93

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# 0.17.0 (2015-11-25)
22

3+
- missing mod export added
4+
5+
# 0.17.0 (2015-11-25)
6+
37
- select wrapper implemented
48

59
# 0.16.2 (2015-11-23)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "arrayfire-js",
3-
"version": "0.17.0",
3+
"version": "0.17.1",
44
"description": "ArrayFire.js - ArrayFire for Node.js platform",
55
"license": "BSD-3-Clause",
66
"repository": {

src/mathfunctions.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ NAN_MODULE_INIT(InitMathFunctions)
109109
Nan::Set(target, Nan::New<String>("hypot").ToLocalChecked(), Nan::New<FunctionTemplate>(Hypot)->GetFunction());
110110
Nan::Set(target, Nan::New<String>("max").ToLocalChecked(), Nan::New<FunctionTemplate>(Max)->GetFunction());
111111
Nan::Set(target, Nan::New<String>("min").ToLocalChecked(), Nan::New<FunctionTemplate>(Min)->GetFunction());
112+
Nan::Set(target, Nan::New<String>("mod").ToLocalChecked(), Nan::New<FunctionTemplate>(Mod)->GetFunction());
112113
Nan::Set(target, Nan::New<String>("round").ToLocalChecked(), Nan::New<FunctionTemplate>(Round)->GetFunction());
113114
Nan::Set(target, Nan::New<String>("sign").ToLocalChecked(), Nan::New<FunctionTemplate>(Sign)->GetFunction());
114115
Nan::Set(target, Nan::New<String>("trunc").ToLocalChecked(), Nan::New<FunctionTemplate>(Trunc)->GetFunction());

0 commit comments

Comments
 (0)
0