Skip to content

Commit

Permalink
Merge pull request #83 from kushalbakshi/main
Browse files Browse the repository at this point in the history
Fix DANDI Upload URL
  • Loading branch information
kabilar authored May 16, 2023
2 parents 23c8611 + 850917f commit 51b9bdc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
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.5.4] - 2023-05-14

+ Fix - DANDI URL for uploads where `staging=False`.

## [0.5.3] - 2023-05-11

+ Fix - `.ipynb` dark mode output for all notebooks.
Expand Down Expand Up @@ -66,6 +70,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and

+ Add - Readers for: `ScanImage`, `Suite2p`, `CaImAn`.

[0.5.4]: https://github.com/datajoint/element-interface/releases/tag/0.5.4
[0.5.3]: https://github.com/datajoint/element-interface/releases/tag/0.5.3
[0.5.2]: https://github.com/datajoint/element-interface/releases/tag/0.5.2
[0.5.1]: https://github.com/datajoint/element-interface/releases/tag/0.5.1
Expand Down
2 changes: 1 addition & 1 deletion element_interface/dandi.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def upload_to_dandi(
download(
f"https://gui-staging.dandiarchive.org/#/dandiset/{dandiset_id}"
if staging
else dandiset_id,
else f"https://dandiarchive.org/dandiset/{dandiset_id}",
output_dir=working_directory,
)

Expand Down
2 changes: 1 addition & 1 deletion element_interface/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Package metadata"""

__version__ = "0.5.3"
__version__ = "0.5.4"

0 comments on commit 51b9bdc

Please sign in to comment.