Skip to content

Commit

Permalink
Merge pull request #356 from guzman-raphael/fix-zero-fetchn
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
guzman-raphael authored Mar 16, 2021
2 parents e0d8720 + 3f4c732 commit 8f8f9f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion +dj/+internal/GeneralRelvar.m
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ function clip(self)
for iArg=1:length(specs)
% if renamed, use the renamed attribute
name = regexp(specs{iArg}, '(\w+)\s*$', 'tokens');
sel = cellfun(@(x) strcmp(x, name{1}), {self.header.attributes.name});
sel = cellfun(@(x) strcmp(x, name{1}{1}), {self.header.attributes.name});
if self.tableHeader.attributes(sel).isNumeric
varargout{iArg} = [s.(name{1}{1})]';
else
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',4,'bugfix',1);
v = struct('major',3,'minor',4,'bugfix',2);

if nargout
varargout{1}=v;
Expand Down

0 comments on commit 8f8f9f6

Please sign in to comment.