diff --git a/CHANGELOG.md b/CHANGELOG.md index e7bed3c..9e89ea6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +- 3.0.5 + - Upgraded Zephir dependency to 0.17 + - 3.0.4 - Fixed bug in Vector less equal operation diff --git a/config.json b/config.json index 2c1aee0..6312414 100644 --- a/config.json +++ b/config.json @@ -4,7 +4,7 @@ "extension-name": "tensor", "description": "A library and extension that provides objects for scientific computing in PHP.", "author": "The Rubix ML Community", - "version": "3.0.4", + "version": "3.0.5", "verbose": true, "extra-cflags": "-O3", "extra-libs": "-lopenblas -llapacke -lgfortran", diff --git a/ext/php_tensor.h b/ext/php_tensor.h index 705a7ad..5c3b6a9 100644 --- a/ext/php_tensor.h +++ b/ext/php_tensor.h @@ -11,7 +11,7 @@ #include "kernel/globals.h" #define PHP_TENSOR_NAME "tensor" -#define PHP_TENSOR_VERSION "3.0.4" +#define PHP_TENSOR_VERSION "3.0.5" #define PHP_TENSOR_EXTNAME "tensor" #define PHP_TENSOR_AUTHOR "The Rubix ML Community" #define PHP_TENSOR_ZEPVERSION "0.17.0-$Id$"