Skip to content

Commit 29f841f

Browse files
authored
Merge pull request #44 from kushalbakshi/main
Fix dark mode and CI/CD issues
2 parents ca3eec7 + 6f57ea9 commit 29f841f

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/u24_element_release_call.yaml

Lines changed: 1 addition & 3 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')
@@ -26,5 +25,4 @@ jobs:
2625
py_ver: 3.9
2726
secrets:
2827
TWINE_USERNAME: ${{secrets.TWINE_USERNAME}}
29-
TWINE_PASSWORD: ${{secrets.TWINE_PASSWORD}}
30-
GOOGLE_ANALYTICS_KEY: ${{secrets.GOOGLE_ANALYTICS_KEY}}
28+
TWINE_PASSWORD: ${{secrets.TWINE_PASSWORD}}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
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.2.1] - 2023-05-11
7+
8+
+ Fix - `.ipynb` dark mode output for all notebooks.
9+
+ Fix - Remove `GOOGLE_ANALYTICS_KEY` from `u24_element_release_call.yml`.
10+
611
## [0.2.0] - 2023-04-28
712

813
+ Update - Attribute names relative to issues #20, #22, #26
@@ -32,6 +37,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
3237
+ Add - Load data acquired with Miniscope-DAQ-V3
3338
+ Add - Load data analyzed with MiniscopeAnalysis
3439

40+
[0.2.1]: https://github.com/datajoint/element-miniscope/releases/tag/0.2.1
3541
[0.2.0]: https://github.com/datajoint/element-miniscope/releases/tag/0.2.0
3642
[0.1.4]: https://github.com/datajoint/element-miniscope/releases/tag/0.1.4
3743
[0.1.3]: https://github.com/datajoint/element-miniscope/releases/tag/0.1.3

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_miniscope/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.2.0"
2+
__version__ = "0.2.1"

0 commit comments

Comments
 (0)