File tree 4 files changed +12
-11
lines changed
4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 4
4
jobs :
5
5
make_github_release :
6
6
uses : datajoint/.github/.github/workflows/make_github_release.yaml@main
7
- pypi_release :
8
- needs : make_github_release
9
- uses : datajoint/.github/.github/workflows/pypi_release.yaml@main
10
- secrets :
11
- TWINE_USERNAME : ${{secrets.TWINE_USERNAME}}
12
- TWINE_PASSWORD : ${{secrets.TWINE_PASSWORD}}
13
- with :
14
- UPLOAD_URL : ${{needs.make_github_release.outputs.release_upload_url}}
15
7
mkdocs_release :
16
8
uses : datajoint/.github/.github/workflows/mkdocs_release.yaml@main
17
9
permissions :
Original file line number Diff line number Diff line change 2
2
3
3
Observes [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) standard and [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) convention.
4
4
5
+ ## [ 0.2.0] - 2024-01-25
6
+
7
+ + Add - ` session_id ` attribute to ` Session ` in ` session_with_datetime.py `
8
+ + Update - Remove PyPI release from GitHub Actions workflow
9
+
5
10
## [ 0.1.7] - 2023-11-30
6
11
7
- + Allow null value for ` session_datetime ` in ` session_with_id `
12
+ + Update - Allow null value for ` session_datetime ` in ` session_with_id `
8
13
9
14
## [ 0.1.6] - 2023-09-18
10
15
@@ -48,6 +53,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
48
53
+ Add - GitHub Action release process
49
54
+ Add - ` session ` schema
50
55
56
+ [ 0.2.0 ] : https://github.com/datajoint/element-session/releases/tag/0.2.0
51
57
[ 0.1.7 ] : https://github.com/datajoint/element-session/releases/tag/0.1.7
52
58
[ 0.1.6 ] : https://github.com/datajoint/element-session/releases/tag/0.1.6
53
59
[ 0.1.5 ] : https://github.com/datajoint/element-session/releases/tag/0.1.5
Original file line number Diff line number Diff line change @@ -53,13 +53,16 @@ class Session(dj.Manual):
53
53
"""Central Session table
54
54
55
55
Attributes:
56
- Subject (foreign key): Key for Subject table
56
+ Subject (foreign key): Primary key from Subject table
57
57
session_datetime (datetime): date and time of the session
58
+ session_id (int, optional): numerical session identifier
58
59
"""
59
60
60
61
definition = """
61
62
-> Subject
62
63
session_datetime: datetime
64
+ ---
65
+ session_id=null: int
63
66
"""
64
67
65
68
class Attribute (dj .Part ):
Original file line number Diff line number Diff line change 1
1
"""Package metadata."""
2
- __version__ = "0.1.7 "
2
+ __version__ = "0.2.0 "
You can’t perform that action at this time.
0 commit comments