Skip to content

Commit 69b6f58

Browse files
committed
bump: version 1.0.0 → 1.0.1
1 parent d17a3ac commit 69b6f58

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v1.0.1 (2021-05-05)
2+
3+
### Fix
4+
5+
- fix various typo and improve instructions in notebook
6+
17
## v1.0.0 (2021-05-03)
28

39
### Highlight

minian/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
from .utilities import custom_arr_optimize, custom_delay_optimize
44

5-
__version__ = "1.0.0"
5+
__version__ = "1.0.1"
66

77
da.config.set(
88
array_optimize=custom_arr_optimize, delayed_optimize=custom_delay_optimize

minian/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
DEMO_FILES = [f"demo_movies/msCam{i}.avi" for i in range(1, 11)] + [
1414
f"demo_data/session{i}/minian.nc" for i in range(1, 3)
1515
]
16-
VERSION = "1.0.0"
16+
VERSION = "1.0.1"
1717

1818

1919
def _get_file(filename: str, version: str):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77
[tool]
88
[tool.commitizen]
99
name = "cz_conventional_commits"
10-
version = "1.0.0"
10+
version = "1.0.1"
1111
tag_format = "v$version"
1212
changelog_incremental = true
1313
version_files = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def _get_requirements(requirement_file):
1717

1818
setuptools.setup(
1919
name=NAME,
20-
version="1.0.0",
20+
version="1.0.1",
2121
author="MiniAn Developers",
2222
author_email="denisecailab@gmail.com",
2323
description="MiniAn is an analysis pipeline and visualization tool inspired by both CaImAn and MIN1PIPE package specifically for Miniscope data.",

0 commit comments

Comments
 (0)