File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 22
33Observes [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) standard and [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) convention.
44
5+ ## [ 0.2.5] - 2024-10-25
6+
7+ + Update - ` trial_type ` to varchar(24) in ` TrialType ` table
8+
59## [ 0.2.4] - 2024-08-23
610
711+ Update - EventType to varchar(32)
@@ -48,6 +52,8 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
4852+ Add - AlignmentEvent design to capture windows relative to an event
4953+ Add - Black formatting into code base
5054
55+ [ 0.2.5 ] : https://github.com/datajoint/element-event/releases/tag/0.2.5
56+ [ 0.2.4 ] : https://github.com/datajoint/element-event/releases/tag/0.2.4
5157[ 0.2.3 ] : https://github.com/datajoint/element-event/releases/tag/0.2.3
5258[ 0.2.2 ] : https://github.com/datajoint/element-event/releases/tag/0.2.2
5359[ 0.2.1 ] : https://github.com/datajoint/element-event/releases/tag/0.2.1
Original file line number Diff line number Diff line change @@ -120,12 +120,12 @@ class TrialType(dj.Lookup):
120120 """Set of unique trial types present within a recording session
121121
122122 Attributes:
123- trial_type ( varchar(16 ) ): Name of trial type
123+ trial_type ( varchar(24 ) ): Name of trial type
124124 trial_type_description ( varchar(256) ): Optional. Long Description.
125125 """
126126
127127 definition = """
128- trial_type : varchar(16 )
128+ trial_type : varchar(24 )
129129 ---
130130 trial_type_description='' : varchar(256)
131131 """
Original file line number Diff line number Diff line change 11"""Package metadata."""
22
3- __version__ = "0.2.4 "
3+ __version__ = "0.2.5 "
You can’t perform that action at this time.
0 commit comments