From 0a3cf2a9dc34365fd848e02dbd9588e4d15b385c Mon Sep 17 00:00:00 2001 From: haesleinhuepf Date: Sat, 16 May 2020 19:20:35 +0200 Subject: [PATCH] bump version --- README.md | 2 +- pom.xml | 4 ++-- src/main/matlab_install/init_clatlab.m | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e1510ff..a772148 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Right now, this is very preliminary. ## Installation Download the following files, removed the numbers from their file endings and put them all in the `/Documents/MATLAB folder: -* [clatlab-0.27.4-jar-with-dependencies.jar](https://github.com/clij/clatlab/releases/download/0.27.4/clatlab-0.27.4-jar-with-dependencies.jar) +* [clatlab-2.0.0.0-jar-with-dependencies.jar](https://github.com/clij/clatlab/releases/download/2.0.0.0/clatlab-2.0.0.0-jar-with-dependencies.jar) * [init_clatlab.m](https://github.com/clij/clatlab/blob/master/src/main/matlab_install/init_clatlab.m) Test the installation by executing this script from matlab: diff --git a/pom.xml b/pom.xml index 0285649..24a639e 100644 --- a/pom.xml +++ b/pom.xml @@ -7,12 +7,12 @@ net.haesleinhuepf clij-parent-pom - 1.6.3 + 2.0.0.0-BETA net.haesleinhuepf clatlab - 0.27.3 + 2.0.0.0-BETA CLATLAB CLIJ2 bridge to Matlab diff --git a/src/main/matlab_install/init_clatlab.m b/src/main/matlab_install/init_clatlab.m index db09486..963a5e6 100644 --- a/src/main/matlab_install/init_clatlab.m +++ b/src/main/matlab_install/init_clatlab.m @@ -15,7 +15,7 @@ function clatlab_ = init_clatlab() if (exist('net.haesleinhuepf.clatlab.CLATLAB') ~= 8) - jar_location = strrep(mfilename('fullpath'), 'init_clatlab', 'clatlab-0.27.4-jar-with-dependencies.jar'); + jar_location = strrep(mfilename('fullpath'), 'init_clatlab', 'clatlab-2.0.0.0-jar-with-dependencies.jar'); javaaddpath(jar_location); end clatlab_ = net.haesleinhuepf.clatlab.CLATLAB.getInstance();