Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
haesleinhuepf committed Jan 12, 2021
1 parent 195f213 commit ea1aa99
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ and its matlab code generator

## Installation
Download the following files and put them all in the `<HOME_DIR>/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:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<parent>
<groupId>net.haesleinhuepf</groupId>
<artifactId>clij-parent-pom</artifactId>
<version>2.2.0.12</version>
<version>2.2.0.14</version>
</parent>

<groupId>net.haesleinhuepf</groupId>
<artifactId>clatlabx</artifactId>
<version>0.30.1.12</version>
<version>0.30.1.14</version>
<name>CLATLABx</name>
<description>CLIJx bridge to Matlab</description>

Expand Down
2 changes: 1 addition & 1 deletion src/main/matlab_install/init_clatlabx.m
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit ea1aa99

Please sign in to comment.