Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add UTC offset per datajoint-elements#63 #24

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.2.0] - 2022-06-01

+ Add - UTC offset for session datetime

## [0.1.2] - 2022-06-01

+ Bugfix - Remove is_activated schema assertion for NWB export
Expand Down
2 changes: 2 additions & 0 deletions element_session/session_with_datetime.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ class Session(dj.Manual):
definition = """
-> Subject
session_datetime: datetime
---
utc_offset=0 : int # UTC offset ±hhmm for above datetime. If already UTC, 0.
"""


Expand Down
1 change: 1 addition & 0 deletions element_session/session_with_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ class Session(dj.Manual):
session_id: int
---
session_datetime: datetime
utc_offset=0 : int # UTC offset ±hhmm for above datetime. If already UTC, 0.
"""


Expand Down
2 changes: 1 addition & 1 deletion element_session/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Package metadata."""
__version__ = "0.1.2"
__version__ = "0.2.0"