Skip to content

Commit 33338dc

Browse files
updated the version number and the change log in preparation for release 0.8.0
1 parent d625b5e commit 33338dc

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
11
## Release notes
22

3-
### 0.5.0 (#298)
3+
### 0.8.0 -- July 26, 2017
4+
Documentation and tutorials available at https://docs.datajoint.io and https://tutorials.datajoint.io
5+
* improved the ERD graphics and features using the graphviz libraries (#207, #333)
6+
* improved password handling logic (#322, #321)
7+
* the use of the `contents` property to populate tables now only works in `dj.Lookup` classes (#310).
8+
* allwed to suppress the size of query results through the `show_tuple_count` configuration option (#309)
9+
* implemented renamed foreign keys to spec (#333)
10+
* added the `limit` keyword argument to populate (#329)
11+
* reduced the number of displayed messages (#308)
12+
* added `size_on_disk property for dj.Schema() objects (#323)
13+
* job keys are entered in the jobs table (#316, #243)
14+
* simplified the `fetch` and `fetch1` syntax, deprecating the `fetch[...]` syntax (#319)
15+
* the jobs tables now store the connection ids to allow identifying abandoned jobs (#288, #317)
16+
17+
18+
### 0.5.0 (#298) -- March 8, 2017
419
* All fetched integers are now 64-bit long and all fetched floats are double precision.
520
* Added `dj.create_virtual_module`
621

7-
### 0.4.10 (#286)
22+
### 0.4.10 (#286) -- February 6, 2017
823
* Removed Vagrant and Readthedocs support
924
* Explicit saving of configuration (issue #284)
1025

datajoint/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .version import __version__
1919

2020
__author__ = "Dimitri Yatsenko, Edgar Y. Walker, and Fabian Sinz at Baylor College of Medicine"
21-
__date__ = "June 22, 2017"
21+
__date__ = "July 26, 2017"
2222
__all__ = ['__author__', '__version__',
2323
'config', 'conn', 'kill', 'BaseRelation',
2424
'Connection', 'Heading', 'FreeRelation', 'Not', 'schema',

datajoint/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.3"
1+
__version__ = "0.8.0"

0 commit comments

Comments
 (0)