Skip to content

Commit 3f4c732

Browse files
Bump version.
1 parent c972e63 commit 3f4c732

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

+dj/+internal/GeneralRelvar.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ function clip(self)
289289
for iArg=1:length(specs)
290290
% if renamed, use the renamed attribute
291291
name = regexp(specs{iArg}, '(\w+)\s*$', 'tokens');
292-
sel = cellfun(@(x) strcmp(x, name{1}), {self.header.attributes.name});
292+
sel = cellfun(@(x) strcmp(x, name{1}{1}), {self.header.attributes.name});
293293
if self.tableHeader.attributes(sel).isNumeric
294294
varargout{iArg} = [s.(name{1}{1})]';
295295
else

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

66
if nargout
77
varargout{1}=v;

0 commit comments

Comments
 (0)