Skip to content
Merged
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
18 changes: 18 additions & 0 deletions .github/workflows/u24_workflow_before_release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: u24_workflow_before_release_0.0.1
on:
pull_request:
push:
branches:
- '**'
tags-ignore:
- '**'
workflow_dispatch:
jobs:
call_context_check:
uses: dj-sciops/djsciops-cicd/.github/workflows/context_check.yaml@main
call_u24_workflow_build_debian:
uses: dj-sciops/djsciops-cicd/.github/workflows/u24_workflow_build.yaml@main
with:
jhub_ver: 1.4.2
py_ver: 3.9
dist: debian
20 changes: 20 additions & 0 deletions .github/workflows/u24_workflow_release_call.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: u24_workflow_release_call_0.0.1
on:
workflow_run:
workflows: ["u24_workflow_tag_to_release_0.0.1"]
types:
- completed
jobs:
call_context_check:
uses: dj-sciops/djsciops-cicd/.github/workflows/context_check.yaml@main
call_u24_workflow_release_debian:
if: >-
github.event.workflow_run.conclusion == 'success' && github.repository_owner == 'datajoint'
uses: dj-sciops/djsciops-cicd/.github/workflows/u24_workflow_release.yaml@main
with:
jhub_ver: 1.4.2
py_ver: 3.9
dist: debian
secrets:
REGISTRY_USERNAME: ${{secrets.DOCKER_USERNAME}}
REGISTRY_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
15 changes: 15 additions & 0 deletions .github/workflows/u24_workflow_tag_to_release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: u24_workflow_tag_to_release_0.0.1
on:
push:
tags:
- '*.*.*'
- 'test*.*.*'
jobs:
call_context_check:
uses: dj-sciops/djsciops-cicd/.github/workflows/context_check.yaml@main
call_u24_workflow_build_debian:
uses: dj-sciops/djsciops-cicd/.github/workflows/u24_workflow_build.yaml@main
with:
jhub_ver: 1.4.2
py_ver: 3.9
dist: debian
12 changes: 5 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
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.1 - Unreleased
## [0.2.1] - 2023-04-24

+ Add - Apply `black` formatting to codebase
+ Update - Move `recursive_search` function
+ Update - Revise Pytests/docker structure
+ Update - Add reference schema for supplemental tables
+ Add - Visualization notebook
+ Add - GitHub Actions workflows

## 0.2.0 - 2022-07-11
## [0.2.0] - 2022-07-11

+ Update - Docker and Compose files
+ Update - Requirements for latest releases of Elements
Expand All @@ -35,8 +36,5 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and

+ Add - Version

[0.2.1]: https://github.com/datajoint/element-miniscope/releases/tag/0.2.1
[0.2.0]: https://github.com/datajoint/element-miniscope/releases/tag/0.2.0
[0.1.0]: https://github.com/datajoint/element-miniscope/releases/tag/0.1.0
[0.0.2]: https://github.com/datajoint/element-miniscope/releases/tag/0.0.2
[0.0.1]: https://github.com/datajoint/element-miniscope/releases/tag/0.0.1
[0.2.1]: https://github.com/datajoint/workflow-miniscope/releases/tag/0.2.1
[0.2.0]: https://github.com/datajoint/workflow-miniscope/releases/tag/0.2.0
1 change: 0 additions & 1 deletion workflow_miniscope/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
"""Package metadata."""
# Also update in docker-compose.yaml
__version__ = "0.2.1"