Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.4] - 2026-02-04

### Fixed

- macOS app bundle: Use working-directory to build from rustpix-gui crate, avoiding workspace-level build that includes rustpix-python

## [1.0.3] - 2026-02-03

### Fixed

- macOS app bundle: Excluded rustpix-python from build to fix linker errors
- macOS app bundle: Excluded rustpix-python from build to fix linker errors (failed - invalid flag)

## [1.0.2] - 2026-02-03

Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [
]

[workspace.package]
version = "1.0.3"
version = "1.0.4"
edition = "2021"
authors = ["ORNL Neutron Imaging <neutronimaging@ornl.gov>"]
license = "MIT"
Expand All @@ -30,10 +30,10 @@ categories = ["science", "data-structures", "parsing"]

[workspace.dependencies]
# Internal crates (version for crates.io, path for local dev)
rustpix-core = { version = "1.0.3", path = "rustpix-core" }
rustpix-tpx = { version = "1.0.3", path = "rustpix-tpx" }
rustpix-algorithms = { version = "1.0.3", path = "rustpix-algorithms" }
rustpix-io = { version = "1.0.3", path = "rustpix-io" }
rustpix-core = { version = "1.0.4", path = "rustpix-core" }
rustpix-tpx = { version = "1.0.4", path = "rustpix-tpx" }
rustpix-algorithms = { version = "1.0.4", path = "rustpix-algorithms" }
rustpix-io = { version = "1.0.4", path = "rustpix-io" }

# Parallelism
rayon = "1.10"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "rustpix"
version = "1.0.3"
version = "1.0.4"
description = "High-performance TPX3 pixel detector data processing for neutron imaging"
authors = [{ name = "ORNL Neutron Imaging", email = "neutronimaging@ornl.gov" }]
license = { file = "LICENSE" }
Expand Down