Skip to content

Commit 3945725

Browse files
author
Chris Turner
committed
add dj.key_hash reference to dj.hash.key_hash, treat as 'public api'
1 parent 5bb474d commit 3945725

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Release notes
22

3+
### Current
4+
* add dj.key_hash reference to dj.hash.key_hash, treat as 'public api'
5+
6+
37
### 0.12.8 -- Jan 12, 2021
48
* table.children, .parents, .descendents, and ancestors can return queryable objects. PR #833
59
* Load dependencies before querying dependencies. (#179) PR #833

datajoint/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
'Not', 'AndList', 'U', 'Diagram', 'Di', 'ERD',
2525
'set_password', 'kill',
2626
'MatCell', 'MatStruct', 'AttributeAdapter',
27-
'errors', 'DataJointError', 'key']
27+
'errors', 'DataJointError', 'key', 'key_hash']
2828

2929
from .version import __version__
3030
from .settings import config
@@ -38,6 +38,7 @@
3838
from .admin import set_password, kill
3939
from .blob import MatCell, MatStruct
4040
from .fetch import key
41+
from .hash import key_hash
4142
from .attribute_adapter import AttributeAdapter
4243
from . import errors
4344
from .errors import DataJointError

0 commit comments

Comments
 (0)