Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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',3,'bugfix',0);
v = struct('major',3,'minor',3,'bugfix',1);

if nargout
varargout{1}=v;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@

Creating a virtual class
~~~~~~~~~~~~~~~~~~~~~~~~

A ``TableAccessor`` object is created as a property of a schema during each schema's creation.
This property is named ``schema.v``, for *virtual class generator*.
The ``TableAccessor`` ``v`` itself has properties that refer to the tables of the schema.
Expand Down
15 changes: 14 additions & 1 deletion docs-parts/intro/Releases_lang1.rst
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
Start of Release Notes
3.3.1 -- October 31, 2019
-------------------------
* Ability to create schema without GUI PR #155
* Support secure connections with TLS (aka SSL) (#103) PR #157, mym-PR #11, #12, #13
* Allow GUI-based password entry to avoid cleartext password from being captured in MATLAB log PR #159
* Add detailed error message if DJ012 Python-native blobs detected (#170) mYm-PR #16
* Add support for PAM connections via MariaDB's Dialog plugin (#168, #169) mYm-PR #14, #15
* Minor improvements to reuse of connection if applicable PR #166, #167
* Bugfixes (#152)

3.2.2 -- February 5, 2019
-------------------------

`Previous release notes TBD`