diff --git a/+dj/setup.m b/+dj/setup.m index 2ae665bc..9df99be9 100644 --- a/+dj/setup.m +++ b/+dj/setup.m @@ -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 diff --git a/+dj/version.m b/+dj/version.m index 1fb2916e..3efacd05 100644 --- a/+dj/version.m +++ b/+dj/version.m @@ -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; diff --git a/.gitignore b/.gitignore index 1a9c3e38..068bbfde 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,4 @@ docker-compose.yml matlab.prf win.* macos.* -package.prj \ No newline at end of file +*.prj \ No newline at end of file diff --git a/DataJoint.mltbx b/DataJoint.mltbx index d2251b34..66eab139 100644 Binary files a/DataJoint.mltbx and b/DataJoint.mltbx differ diff --git a/docs-parts/intro/Releases_lang1.rst b/docs-parts/intro/Releases_lang1.rst index 14d5f353..ea01c4ba 100644 --- a/docs-parts/intro/Releases_lang1.rst +++ b/docs-parts/intro/Releases_lang1.rst @@ -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