From ea1aa99773ae1f7597dcad762a89be3939667c5c Mon Sep 17 00:00:00 2001 From: haesleinhuepf Date: Tue, 12 Jan 2021 13:30:52 +0100 Subject: [PATCH] bump version --- README.md | 2 +- pom.xml | 4 ++-- src/main/matlab_install/init_clatlabx.m | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 64dae54..92c392e 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ and its matlab code generator ## Installation Download the following files and put them all in the `/Documents/MATLAB folder: -* [clatlabx-0.30.1.12-jar-with-dependencies.jar](https://github.com/clij/clatlabx/releases/download/0.30.1.12/clatlabx-0.30.1.12-jar-with-dependencies.jar) +* [clatlabx-0.30.1.14-jar-with-dependencies.jar](https://github.com/clij/clatlabx/releases/download/0.30.1.14/clatlabx-0.30.1.14-jar-with-dependencies.jar) * [init_clatlabx.m](https://github.com/clij/clatlabx/blob/master/src/main/matlab_install/init_clatlabx.m) Test the installation by executing this script from matlab: diff --git a/pom.xml b/pom.xml index 53cba39..274d432 100644 --- a/pom.xml +++ b/pom.xml @@ -7,12 +7,12 @@ net.haesleinhuepf clij-parent-pom - 2.2.0.12 + 2.2.0.14 net.haesleinhuepf clatlabx - 0.30.1.12 + 0.30.1.14 CLATLABx CLIJx bridge to Matlab diff --git a/src/main/matlab_install/init_clatlabx.m b/src/main/matlab_install/init_clatlabx.m index 10d39d1..7a4a4a6 100644 --- a/src/main/matlab_install/init_clatlabx.m +++ b/src/main/matlab_install/init_clatlabx.m @@ -13,7 +13,7 @@ function clatlabx_ = init_clatlabx() if (exist('net.haesleinhuepf.clatlab.CLATLABx') ~= 8) - jar_location = strrep(mfilename('fullpath'), 'init_clatlabx', 'clatlabx-0.30.1.12-jar-with-dependencies.jar'); + jar_location = strrep(mfilename('fullpath'), 'init_clatlabx', 'clatlabx-0.30.1.14-jar-with-dependencies.jar'); javaaddpath(jar_location); end clatlabx_ = net.haesleinhuepf.clatlab.CLATLABx.getInstance();