Skip to content

Commit

Permalink
Merge pull request #53 from gitter-lab/prepare-release
Browse files Browse the repository at this point in the history
Prepare version 0.4.1 release
  • Loading branch information
agitter committed Feb 21, 2020
2 parents c26da57 + 9bd25d9 commit fb04d8d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Version 0.4.1
Version 0.4.1 fixes a bug that occurred when multiple GLG tests were run in parallel with a shared file system.
The same temporary .mat file was overwritten by different GLG tests.
Now, each GLG test includes the ID hyperparameter in the temporary .mat filename.

Thank you [@PayamDiba](https://github.com/PayamDiba) for reporting this issue.

# Version 0.4.0
Changes in version 0.4.0 include:
- Support three modes of execution: MATLAB, compiled MATLAB executables with MATLAB runtime, or Docker
Expand Down
2 changes: 1 addition & 1 deletion code/SINGE.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
% aggregation
% hyperparameter_file = file path to text file containing all
% hyperparameters
SINGE_version = '0.4.0';
SINGE_version = '0.4.1';
display(SINGE_version);

fid = fopen(hyperparameter_file);
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ENV SINGE_RUNNING_IN_DOCKER 1

# Download an intermediate version of the compiled SINGE executables for testing
# Download the md5sums of the source .m files and binaries
RUN md5=cbe289c204defe48f1a69fbe5326af0e && \
RUN md5=c50ec7bc13e287eca340c9d19d8bc27d && \
wget --quiet https://www.biostat.wisc.edu/~gitter/tmp/$md5/SINGE_Test && \
wget --quiet https://www.biostat.wisc.edu/~gitter/tmp/$md5/SINGE_GLG_Test && \
wget --quiet https://www.biostat.wisc.edu/~gitter/tmp/$md5/SINGE_Aggregate && \
Expand Down

0 comments on commit fb04d8d

Please sign in to comment.