Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
haesleinhuepf committed Feb 14, 2021
1 parent fb2fd2a commit d45ec38
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@ clatlab is a bridge between [Matlab](https://de.mathworks.com/products/matlab.ht

## Installation
Download the following files, removed the numbers from their file endings and put them all in the `<HOME_DIR>/Documents/MATLAB folder:
* [clatlab-2.2.0.14-jar-with-dependencies.jar](https://github.com/clij/clatlab/releases/download/2.2.0.14/clatlab-2.2.0.14-jar-with-dependencies.jar)
* [clatlab-2.2.0.19-jar-with-dependencies.jar](https://github.com/clij/clatlab/releases/download/2.2.0.19/clatlab-2.2.0.19-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:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -7,12 +7,12 @@
<parent>
<groupId>net.haesleinhuepf</groupId>
<artifactId>clij-parent-pom</artifactId>
<version>2.2.0.14</version>
<version>2.2.0.19</version>
</parent>

<groupId>net.haesleinhuepf</groupId>
<artifactId>clatlab</artifactId>
<version>2.2.0.14</version>
<version>2.2.0.19</version>
<name>CLATLAB</name>
<description>CLIJ2 bridge to Matlab</description>

Expand Down
2 changes: 1 addition & 1 deletion src/main/matlab_install/init_clatlab.m
Expand Up @@ -15,7 +15,7 @@

function clatlab_ = init_clatlab()
if (exist('net.haesleinhuepf.clatlab.CLATLAB') ~= 8)
jar_location = strrep(mfilename('fullpath'), 'init_clatlab', 'clatlab-2.2.0.14-jar-with-dependencies.jar');
jar_location = strrep(mfilename('fullpath'), 'init_clatlab', 'clatlab-2.2.0.19-jar-with-dependencies.jar');
javaaddpath(jar_location);
end
clatlab_ = net.haesleinhuepf.clatlab.CLATLAB.getInstance();
Expand Down

0 comments on commit d45ec38

Please sign in to comment.