Skip to content

Commit 352807f

Browse files
committed
Bump version
1 parent 8e43004 commit 352807f

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ The following changes are present in the `main` branch of the repository and are
44

55
- N/A
66

7+
## Version 0.14.1
8+
9+
- Upgrades to dependencies to fix deprecation warnings (vtkio, PyO3)
10+
711
## Version 0.14.0
812

913
- Lib: Implement AVX and NEON variants of f32 cubic spline kernel

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ abstract: >-
2121
Splashsurf is a surface reconstruction tool and framework
2222
for reconstructing surfaces from particle data.
2323
license: MIT
24-
version: 0.14.0
25-
date-released: '2025-09-15'
24+
version: 0.14.1
25+
date-released: '2026-03-21'

pysplashsurf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pysplashsurf"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
edition = "2024"
55

66
license.workspace = true

pysplashsurf/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "pysplashsurf"
7-
version = "0.14.0.0"
7+
version = "0.14.1.0"
88
description = "Python bindings for splashsurf, a surface reconstruction library for SPH simulations."
99
keywords = ["surface reconstruction", "marching cubes", "sph", "fluid", "particles", "mesh", "splashsurf", "splishsplash"]
1010
readme = "README.md"

splashsurf/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "splashsurf"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
description = "Command-line tool for surface reconstruction of SPH particle data"
55
keywords = ["sph", "particle", "surface", "reconstruction", "marching-cubes"]
66
categories = ["command-line-utilities", "graphics", "science", "simulation", "visualization"]
@@ -14,7 +14,7 @@ homepage.workspace = true
1414
repository.workspace = true
1515

1616
[dependencies]
17-
splashsurf_lib = { path = "../splashsurf_lib", version = "0.14.0", features = ["vtk_extras", "profiling", "io"] }
17+
splashsurf_lib = { path = "../splashsurf_lib", version = "0.14.1", features = ["vtk_extras", "profiling", "io"] }
1818
clap = { version = "4.5", features = ["derive"] }
1919
log = "0.4"
2020
fern = "0.7"

splashsurf_lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "splashsurf_lib"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
description = "Library for surface reconstruction of SPH particle data"
55
keywords = ["sph", "particle", "surface", "reconstruction", "marching-cubes"]
66
categories = ["graphics", "science", "simulation", "visualization", "rendering"]

0 commit comments

Comments
 (0)