Skip to content

Commit c827ba5

Browse files
committed
Update release log and version
1 parent 68fe0c0 commit c827ba5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

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

66
if nargout
77
varargout{1}=v;

docs-parts/intro/Releases_lang1.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
3.4.3 -- May 28, 2021
2+
---------------------
3+
* Bugfix: Add support to curly brackets in comments (#365) PR #373
4+
15
3.4.2 -- March 16, 2021
26
--------------------------
37
* Bugfix: Fetchn with zero results throws an error (#353) PR #355

tests/TestDeclaration.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function TestDeclaration_testCurlyBracketComment(testCase)
2121
% Check that the comment is correct
2222
table = Lab.Subject();
2323
firstAttributeComment = table.header.attributes.comment;
24-
assert(strcmp(
24+
assert(strcmp( ...
2525
firstAttributeComment, ...
2626
'{subject_id} Comment to test curly bracket'), ...
2727
'Comment did not get inserted correctly'...

0 commit comments

Comments
 (0)