Skip to content

Commit

Permalink
v4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrasser committed Sep 6, 2024
1 parent 57b22e7 commit 34ffa66
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v4.6.0

- Added: `Dataset.is_equivalent` method to check if two datasets have identical fields, but in a different order
- Added: `Dataset.inspect` class method which accepts a path to a dataset and returns its header without loading the entire dataset from disk
- Added: Load a subset of dataset fields with `Dataset.load` by specifying `prefixes` or `fields` keyword arguments
- Added: Support for uploading job assets in `bild` format
- Updated: `ExternalJob.add_output` method now expects `alloc` argument to be specified as a keyword arg
- Updated: Dataset methods which accept a `copy` argument now expect it to be specified as a keyword arg
- Fixed: Significantly reduced memory when loading large datasets with `Dataset.load`

## v4.5.1

- Added: Numpy 2.0 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.5.1"
__version__ = "4.6.0"


def get_include():
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.5.1"
version = "4.6.0"
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 @@ -25,7 +25,7 @@

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

0 comments on commit 34ffa66

Please sign in to comment.