From 9f0ee170319280dcf081984adccefa8b0e6f06b8 Mon Sep 17 00:00:00 2001 From: Sam <40273116+Aweptimum@users.noreply.github.com> Date: Fri, 15 Mar 2024 15:43:50 -0400 Subject: [PATCH] Change version metadata to 3.0.5 (#44) * Update ext version to 3.0.5 in config.json * Update ext version in php_tensor.h * Add Zephir dep change to CHANGELOG.md --- CHANGELOG.md | 3 +++ config.json | 2 +- ext/php_tensor.h | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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$"