Skip to content

Commit 1150d73

Browse files
author
Chris Turner
authored
Merge pull request #310 from datajoint/stage2
Add erd.m back into DataJoint Toolbox
2 parents 273dfee + ec4a3eb commit 1150d73

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

+dj/version.m

+1-1
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',2);
4+
v = struct('major',3,'minor',3,'bugfix',3);
55

66
if nargout
77
varargout{1}=v;

LNX-docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ services:
6262
'relational database.'],\
6363
docs,\
6464
{'.vscode', '.git', '*.env', '.gitignore', '.travis.yml', 'tests',\
65-
'docs-parts', 'mym', 'erd.m', '*docker-compose.yml', 'LICENSE.txt',\
65+
'docs-parts', 'mym', '*docker-compose.yml', 'LICENSE.txt',\
6666
'matlab.prf', 'package.m', 'README.md'},\
6767
@() strjoin(arrayfun(@(x) num2str(x),\
6868
cell2mat(struct2cell(dj.version)),\
6969
'uni', false),\
7070
'.'),\
71-
{'+dj'});\
71+
{'+dj', 'erd.m'});\
7272
matlab.addons.toolbox.installToolbox('DataJoint.mltbx');\
7373
cd(getenv('ORIG_DIR'));\
7474
addpath('tests');\

local-docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ services:
7474
'relational database.'],\
7575
docs,\
7676
{'.vscode', '.git', '*.env', '.gitignore', '.travis.yml', 'tests',\
77-
'docs-parts', 'mym', 'erd.m', '*docker-compose.yml', 'LICENSE.txt',\
77+
'docs-parts', 'mym', '*docker-compose.yml', 'LICENSE.txt',\
7878
'matlab.prf', 'package.m', 'README.md'},\
7979
@() strjoin(arrayfun(@(x) num2str(x),\
8080
cell2mat(struct2cell(dj.version)),\
8181
'uni', false),\
8282
'.'),\
83-
{'+dj'});\
83+
{'+dj', 'erd.m'});\
8484
matlab.addons.toolbox.installToolbox('DataJoint.mltbx');\
8585
cd(tempdir);\
8686
disp(dj.version);\

0 commit comments

Comments
 (0)