Skip to content

Commit ecf487d

Browse files
Merge pull request #294 from guzman-raphael/package-main
Update mym pointer to prod, update version, update changelog
2 parents f6a37af + 09b6f6b commit ecf487d

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

+dj/setup.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ function setup(varargin)
2222
), ...
2323
struct(...
2424
'Name', 'mym', ...
25-
'ResolveTarget', 'guzman-raphael/mym', ...
26-
'Version', '2.7.3'...
25+
'ResolveTarget', 'datajoint/mym', ...
26+
'Version', @(v) compareVersions(v, '2.7.3', @(v_actual,v_ref) v_actual>=v_ref)...
2727
)...
2828
};
2929
try

+dj/version.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function varargout = version
22
% report DataJoint version
33

4-
v = struct('major',3,'minor',3,'bugfix',3);
4+
v = struct('major',3,'minor',3,'bugfix',2);
55

66
if nargout
77
varargout{1}=v;

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ docker-compose.yml
88
matlab.prf
99
win.*
1010
macos.*
11-
package.prj
11+
*.prj

DataJoint.mltbx

36 Bytes
Binary file not shown.

docs-parts/intro/Releases_lang1.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
3.3.2 -- October 15, 2020
2+
-------------------------
3+
* Bugfix: Add blob validation for insert/update regarding sparse matrices which are not yet supported (#238) PR #241
4+
* Bugfix: Modify update to allow nullable updates for strings/date (#211) PR #213
5+
* Bugfix: createSchema had some issues with MySQL8 PR #213
6+
* Update tests
7+
* Docs: Update example related to virtual class (#199) PR #261
8+
* Docs: Fix typos (#150, #151) PR #263, PR #262
9+
* Upgrade packaging and installation to utilize MATLAB Toolbox i.e. `DataJoint.mltbx` PR #285
10+
* 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).
11+
112
3.3.1 -- October 31, 2019
213
-------------------------
314
* Ability to create schema without GUI PR #155

0 commit comments

Comments
 (0)