Skip to content

Commit

Permalink
Merge branch 'release-v4.4' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrasser committed Dec 5, 2023
2 parents b4233bc + 27bf96f commit 78d483c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v4.4.1

- Fixed: Correct command response error data formatting

## v4.4.0

- Added: Python 3.11 and 3.12 support
Expand Down
2 changes: 1 addition & 1 deletion cryosparc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "4.4.0"
__version__ = "4.4.1"


def get_include():
Expand Down
2 changes: 1 addition & 1 deletion cryosparc/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from typing_extensions import Literal, TypedDict

# Database document
D = TypeVar("D", bound=TypedDict)
D = TypeVar("D")


Datatype = Literal[
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "cryosparc-tools"
version = "4.4.0"
version = "4.4.1"
description = "Toolkit for interfacing with CryoSPARC"
readme = "README.md"
requires-python = ">=3.7"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name="cryosparc_tools",
version="4.4.0",
version="4.4.1",
description="Toolkit for interfacing with CryoSPARC",
headers=["cryosparc/include/cryosparc-tools/dataset.h"],
ext_modules=cythonize(
Expand Down

0 comments on commit 78d483c

Please sign in to comment.