Skip to content

Commit 09c75c1

Browse files
authored
Merge pull request #40 from kushalbakshi/main
Fix dark mode and CI/CD issues
2 parents f489153 + c3d6d3d commit 09c75c1

File tree

4 files changed

+30
-23
lines changed

4 files changed

+30
-23
lines changed

.github/workflows/u24_element_release_call.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
secrets:
1818
TWINE_USERNAME: ${{secrets.TWINE_TEST_USERNAME}}
1919
TWINE_PASSWORD: ${{secrets.TWINE_TEST_PASSWORD}}
20-
GOOGLE_ANALYTICS_KEY: ${{secrets.GOOGLE_ANALYTICS_KEY}}
2120
call_u24_elements_release_alpine:
2221
if: >-
2322
github.event.workflow_run.conclusion == 'success' && github.repository_owner == 'datajoint' && !contains(github.event.workflow_run.head_branch, 'test')
@@ -27,4 +26,3 @@ jobs:
2726
secrets:
2827
TWINE_USERNAME: ${{secrets.TWINE_USERNAME}}
2928
TWINE_PASSWORD: ${{secrets.TWINE_PASSWORD}}
30-
GOOGLE_ANALYTICS_KEY: ${{secrets.GOOGLE_ANALYTICS_KEY}}

CHANGELOG.md

Lines changed: 27 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,49 +3,57 @@
33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
44
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
55

6+
## [0.1.7] - 2023 05-11
7+
8+
+ Fix - `.ipynb` dark mode output for all notebooks.
9+
+ Update - CHANGELOG markdown from "-" to "+" for consistency with other
10+
Elements.
11+
+ Fix - Remove `GOOGLE_ANALYTICS_KEY` from `u24_element_release_call.yml`.
12+
613
## [0.1.6] - 2023-04-28
714

8-
- Fix - `.ipynb` output in tutorials is not visible in dark mode.
15+
+ Fix - `.ipynb` output in tutorials is not visible in dark mode.
916

1017
## [0.1.5] - 2023-03-02
1118

12-
- Add - `surgery` schema
13-
- Add - mkdocs documentation
14-
- Update - string typing for NWB export of Species
19+
+ Add - `surgery` schema
20+
+ Add - mkdocs documentation
21+
+ Update - string typing for NWB export of Species
1522

1623
## [0.1.4] - 2022-08-30
1724

18-
- Add - "subject_nickname" into Subject table
19-
- Update - rework "SubjectCull" table
25+
+ Add - "subject_nickname" into Subject table
26+
+ Update - rework "SubjectCull" table
2027

2128
## [0.1.3] - 2022-07-06
2229

23-
- Update - Diagram links for PyPI README
30+
+ Update - Diagram links for PyPI README
2431

2532
## [0.1.2] - 2022-06-27
2633

27-
- Add - Code of Conduct
28-
- Update - pull subject from parent directory in nwb export
29-
- Update - for genotyping.BreedingPair part tables, projection from Subject
30-
- genotyping.BreedingPair.Mother, change attribute to 'mother'
31-
- genotyping.BreedingPair.Father, change attribute to 'father'
34+
+ Add - Code of Conduct
35+
+ Update - pull subject from parent directory in nwb export
36+
+ Update - for genotyping.BreedingPair part tables, projection from Subject
37+
+ genotyping.BreedingPair.Mother, change attribute to 'mother'
38+
+ genotyping.BreedingPair.Father, change attribute to 'father'
3239

3340
## [0.1.1] - 2022-05-10
3441

35-
- Add - NWB export
36-
- Update - Shorten subject primary key to varchar(8)
37-
- Add - Adopt black formatting into code base
42+
+ Add - NWB export
43+
+ Update - Shorten subject primary key to varchar(8)
44+
+ Add - Adopt black formatting into code base
3845

3946
## [0.1.0b0] - 2021-05-07
4047

41-
- Update - First beta release
48+
+ Update - First beta release
4249

4350
## [0.1.0a1] - 2021-05-03
4451

45-
- Add - GitHub Action release process
46-
- Add - `subject` schema
47-
- Add - `genotyping` schema
52+
+ Add - GitHub Action release process
53+
+ Add - `subject` schema
54+
+ Add - `genotyping` schema
4855

56+
[0.1.7]: https://github.com/datajoint/element-animal/releases/tag/0.1.7
4957
[0.1.6]: https://github.com/datajoint/element-animal/releases/tag/0.1.6
5058
[0.1.5]: https://github.com/datajoint/element-animal/releases/tag/0.1.5
5159
[0.1.4]: https://github.com/datajoint/element-animal/releases/tag/0.1.4

docs/src/.overrides/assets/stylesheets/extra.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ html a[title="YouTube"].md-social__link svg {
9292
/* --md-footer-fg-color: var(--dj-white); */
9393
}
9494

95-
[data-md-color-scheme="slate"] .jupyter-wrapper .Table Td {
95+
[data-md-color-scheme="slate"] td,
96+
th {
9697
color: var(--dj-black)
9798
}

element_animal/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Package metadata."""
2-
__version__ = "0.1.6"
2+
__version__ = "0.1.7"

0 commit comments

Comments
 (0)