Skip to content

Commit 0c98e86

Browse files
Update release log and bump version.
1 parent 8c0b8a3 commit 0c98e86

File tree

3 files changed

+30
-13
lines changed

3 files changed

+30
-13
lines changed

CHANGELOG.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,29 @@
11
## Release notes
22

3+
### 0.13.1 -- TBD
4+
* Add `None` as an alias for `NULL` in `dict` restrictions (#824) PR #893
5+
* Bugfix - `schema.list_tables()` is not topologically sorted (#838) PR #893
6+
* Bugfix - Diagram part tables do not show proper class name (#882) PR #893
7+
* Bugfix - Error in complex restrictions (#892) PR #893
8+
39
### 0.13.0 -- Mar 24, 2021
4-
* Re-implement query transpilation into SQL, fixing issues (#386, #449, #450, #484). PR #754
5-
* Re-implement cascading deletes for better performance. PR #839.
6-
* Add table method `.update1` to update a row in the table with new values PR #763
7-
* Python datatypes are now enabled by default in blobs (#761). PR #785
10+
* Re-implement query transpilation into SQL, fixing issues (#386, #449, #450, #484, #558). PR #754
11+
* Re-implement cascading deletes for better performance. PR #839
12+
* Add support for deferred schema activation to allow for greater modularity. (#834) PR #839
13+
* Add query caching mechanism for offline development (#550) PR #839
14+
* Add table method `.update1` to update a row in the table with new values (#867) PR #763, #889
15+
* Python datatypes are now enabled by default in blobs (#761). PR #859
816
* Added permissive join and restriction operators `@` and `^` (#785) PR #754
917
* Support DataJoint datatype and connection plugins (#715, #729) PR 730, #735
10-
* Add `dj.key_hash` alias to `dj.hash.key_hash`
18+
* Add `dj.key_hash` alias to `dj.hash.key_hash` (#804) PR #862
1119
* Default enable_python_native_blobs to True
1220
* Bugfix - Regression error on joins with same attribute name (#857) PR #878
1321
* Bugfix - Error when `fetch1('KEY')` when `dj.config['fetch_format']='frame'` set (#876) PR #880, #878
1422
* Bugfix - Error when cascading deletes in tables with many, complex keys (#883, #886) PR #839
1523
* Add deprecation warning for `_update`. PR #889
1624
* Add `purge_query_cache` utility. PR #889
1725
* Add tests for query caching and permissive join and restriction. PR #889
18-
* Drop support for Python 3.5
26+
* Drop support for Python 3.5 (#829) PR #861
1927

2028
### 0.12.9 -- Mar 12, 2021
2129
* Fix bug with fetch1 with `dj.config['fetch_format']="frame"`. (#876) PR #880

datajoint/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.13.0"
1+
__version__ = "0.13.1"
22

33
assert len(__version__) <= 10 # The log table limits version to the 10 characters

docs-parts/intro/Releases_lang1.rst

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,29 @@
1+
0.13.1 -- TBD
2+
----------------------
3+
* Add `None` as an alias for `NULL` in `dict` restrictions (#824) PR #893
4+
* Bugfix - `schema.list_tables()` is not topologically sorted (#838) PR #893
5+
* Bugfix - Diagram part tables do not show proper class name (#882) PR #893
6+
* Bugfix - Error in complex restrictions (#892) PR #893
7+
18
0.13.0 -- Mar 24, 2021
29
----------------------
3-
* Re-implement query transpilation into SQL, fixing issues (#386, #449, #450, #484). PR #754
4-
* Re-implement cascading deletes for better performance. PR #839.
5-
* Add table method `.update1` to update a row in the table with new values PR #763
6-
* Python datatypes are now enabled by default in blobs (#761). PR #785
10+
* Re-implement query transpilation into SQL, fixing issues (#386, #449, #450, #484, #558). PR #754
11+
* Re-implement cascading deletes for better performance. PR #839
12+
* Add support for deferred schema activation to allow for greater modularity. (#834) PR #839
13+
* Add query caching mechanism for offline development (#550) PR #839
14+
* Add table method `.update1` to update a row in the table with new values (#867) PR #763, #889
15+
* Python datatypes are now enabled by default in blobs (#761). PR #859
716
* Added permissive join and restriction operators `@` and `^` (#785) PR #754
817
* Support DataJoint datatype and connection plugins (#715, #729) PR 730, #735
9-
* Add `dj.key_hash` alias to `dj.hash.key_hash`
18+
* Add `dj.key_hash` alias to `dj.hash.key_hash` (#804) PR #862
1019
* Default enable_python_native_blobs to True
1120
* Bugfix - Regression error on joins with same attribute name (#857) PR #878
1221
* Bugfix - Error when `fetch1('KEY')` when `dj.config['fetch_format']='frame'` set (#876) PR #880, #878
1322
* Bugfix - Error when cascading deletes in tables with many, complex keys (#883, #886) PR #839
1423
* Add deprecation warning for `_update`. PR #889
1524
* Add `purge_query_cache` utility. PR #889
1625
* Add tests for query caching and permissive join and restriction. PR #889
17-
* Drop support for Python 3.5
26+
* Drop support for Python 3.5 (#829) PR #861
1827

1928
0.12.9 -- Mar 12, 2021
2029
----------------------

0 commit comments

Comments
 (0)