Skip to content

Commit

Permalink
bump version, write changelog, relock
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakers-the-rat committed Sep 4, 2023
1 parent 6a7ee12 commit 88d9e7c
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 13 deletions.
19 changes: 19 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 0.1.5 - 23-09-03

- https://github.com/Aharoni-Lab/miniscope-io/pull/9
- https://github.com/Aharoni-Lab/miniscope-io/pull/10

Bugfixes:
- Handle absolute paths correctly on windows, which can't deal with {meth}`pathlib.Path.resolve()`, apparently

New features:
- Added {meth}`~miniscope_io.io.SDCard.to_video` to export videos
- Added notebook demonstrating {meth}`~miniscope_io.io.SDCard.to_video`
- Added {mod}`miniscope_io.utils` module with {func}`~.utils.hash_file` function for hashing files (used in testing)

Code structure:
- (Minor) moved {meth}`~miniscope_io.io.SDCard.skip` to general methods block (no change)

Tests:
- Run tests on macos and windows

## 0.1.4 - 23-09-03

https://github.com/Aharoni-Lab/miniscope-io/pull/8
Expand Down
9 changes: 8 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"myst_parser",
'sphinx.ext.napoleon',
'sphinx.ext.autodoc',
'sphinxcontrib.autodoc_pydantic'
'sphinxcontrib.autodoc_pydantic',
'sphinx.ext.intersphinx'
]

templates_path = ['_templates']
Expand All @@ -33,6 +34,12 @@
html_theme = 'furo'
html_static_path = ['_static']

intersphinx_mapping = {
'python': ('https://docs.python.org/3', None),
'matplotlib': ('https://matplotlib.org/stable/', None),
'numpy': ('https://numpy.org/doc/stable/', None),
'pandas': ('https://pandas.pydata.org/docs/', None)
}

# ----------
# package settings
Expand Down
22 changes: 11 additions & 11 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "miniscope_io"
version = "0.1.4"
version = "0.1.5"
description = ""
authors = [
"sneakers-the-rat <JLSaunders987@gmail.com>",
Expand Down

0 comments on commit 88d9e7c

Please sign in to comment.