Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jondeuce committed Oct 13, 2023
1 parent 3067988 commit 56cf9f7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MATDaemon"
uuid = "88578114-2e0c-4679-8b18-24dc4fa60bec"
authors = ["Jonathan Doucette <jdoucette@physics.ubc.ca> and contributors"]
version = "0.1.2"
version = "0.1.3"

[deps]
DaemonMode = "d749ddd5-2b29-4920-8305-6ff5a704e36e"
Expand Down
2 changes: 1 addition & 1 deletion api/jlcall.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# User settings are loaded from the input file `MATDaemon.JL_OPTIONS` located in the jlcall.m workspace folder.
# The workspace folder is passed using the environment variable `MATDAEMON_WORKSPACE`.
#
# This version of jlcall.jl was written for MATDaemon v0.1.2.
# This version of jlcall.jl was written for MATDaemon v0.1.3.
# MATDaemon was written by Jonathan Doucette (jdoucette@physics.ubc.ca).

# MATDaemon must be available
Expand Down
4 changes: 2 additions & 2 deletions api/jlcall.m
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
%
% The workhorse behind MATDaemon.jl and JLCALL is <a href="matlab: web('https://github.com/dmolina/DaemonMode.jl')">DaemonMode.jl</a> which is used to start a persistent Julia server in the background.
%
% This version of jlcall.m was written for MATDaemon v0.1.2.
% This version of jlcall.m was written for MATDaemon v0.1.3.
% MATDaemon was written by Jonathan Doucette (jdoucette@physics.ubc.ca).

% Parse inputs
Expand Down Expand Up @@ -287,7 +287,7 @@
addParameter(p, 'debug', false, @(x) validateattributes(x, {'logical'}, {'scalar'}));
addParameter(p, 'quiet', false, @(x) validateattributes(x, {'logical'}, {'scalar'}));
addParameter(p, 'reinstall', false, @(x) validateattributes(x, {'logical'}, {'scalar'}));
addParameter(p, 'VERSION', '0.1.2', @ischar); % NOTE: for internal use only
addParameter(p, 'VERSION', '0.1.3', @ischar); % NOTE: for internal use only

parse(p, varargin{:});
opts = p.Results;
Expand Down
2 changes: 1 addition & 1 deletion src/MATDaemon.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ $(README)
"""
module MATDaemon

const VERSION = v"0.1.2"
const VERSION = v"0.1.3"

import DaemonMode
import MAT
Expand Down

2 comments on commit 56cf9f7

@jondeuce
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/93370

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.3 -m "<description of version>" 56cf9f718759b02bf47b412e5266e19d40a0ef2d
git push origin v0.1.3

Please sign in to comment.