Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions +dj/setup.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ function setup(varargin)
), ...
struct(...
'Name', 'mym', ...
'ResolveTarget', 'guzman-raphael/mym', ...
'Version', '2.7.3'...
'ResolveTarget', 'datajoint/mym', ...
'Version', @(v) compareVersions(v, '2.7.3', @(v_actual,v_ref) v_actual>=v_ref)...
)...
};
try
Expand Down
2 changes: 1 addition & 1 deletion +dj/version.m
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function varargout = version
% report DataJoint version

v = struct('major',3,'minor',3,'bugfix',3);
v = struct('major',3,'minor',3,'bugfix',2);

if nargout
varargout{1}=v;
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ docker-compose.yml
matlab.prf
win.*
macos.*
package.prj
*.prj
Binary file modified DataJoint.mltbx
Binary file not shown.
11 changes: 11 additions & 0 deletions docs-parts/intro/Releases_lang1.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
3.3.2 -- October 15, 2020
-------------------------
* Bugfix: Add blob validation for insert/update regarding sparse matrices which are not yet supported (#238) PR #241
* Bugfix: Modify update to allow nullable updates for strings/date (#211) PR #213
* Bugfix: createSchema had some issues with MySQL8 PR #213
* Update tests
* Docs: Update example related to virtual class (#199) PR #261
* Docs: Fix typos (#150, #151) PR #263, PR #262
* Upgrade packaging and installation to utilize MATLAB Toolbox i.e. `DataJoint.mltbx` PR #285
* Updated tagging scheme to drop v i.e. `v3.3.2` -> `3.3.2`. This is due to FileExchange GitHub Releases link not recognizing alphanumeric labels. See [MATLAB docs](https://www.mathworks.com/matlabcentral/about/fx/#Why_GitHub).

3.3.1 -- October 31, 2019
-------------------------
* Ability to create schema without GUI PR #155
Expand Down