Skip to content

Commit

Permalink
bump: version 1.2.0 → 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
phildong committed Feb 10, 2022
1 parent b0dcac1 commit a6d3339
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v1.2.1 (2022-02-10)

### Fix

- avoid syntax error in `update_spatial` returns

## v1.2.0 (2022-02-09)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion minian/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
from .utilities import custom_arr_optimize, custom_delay_optimize

__version__ = "1.2.0"
__version__ = "1.2.1"

da.config.set(
array_optimize=custom_arr_optimize, delayed_optimize=custom_delay_optimize
Expand Down
2 changes: 1 addition & 1 deletion minian/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
DEMO_FILES = [f"demo_movies/msCam{i}.avi" for i in range(1, 11)] + [
f"demo_data/session{i}/minian.nc" for i in range(1, 3)
]
VERSION = "1.2.0"
VERSION = "1.2.1"


def _get_file(filename: str, version: str):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
[tool]
[tool.commitizen]
name = "cz_conventional_commits"
version = "1.2.0"
version = "1.2.1"
tag_format = "v$version"
changelog_incremental = true
version_files = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def _get_requirements(requirement_file):

setuptools.setup(
name=NAME,
version="1.2.0",
version="1.2.1",
author="MiniAn Developers",
author_email="[email protected]",
description="MiniAn is an analysis pipeline and visualization tool inspired by both CaImAn and MIN1PIPE package specifically for Miniscope data.",
Expand Down

0 comments on commit a6d3339

Please sign in to comment.