Skip to content

Commit b206e15

Browse files
committed
Prepare release
1 parent 02ccd77 commit b206e15

File tree

4 files changed

+67
-63
lines changed

4 files changed

+67
-63
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22

33
The following changes are present in the `main` branch of the repository and are not yet part of a release:
44

5+
- No major changes since last release
6+
7+
## Version 0.8.0
8+
59
- Lib: Update to `nalgebra` 0.29
6-
- Lib: All the particle/mesh file IO code was moved from the `splashsurf` binary crate to the `splashsurf_lib` crate. They are behind the optional `io` feature flag. This allows using the IO code in tests of the library itself (previously the code was duplicated). But these functions may also be helpful to library users building their own pipeline if they wanto to quickly test code by e.g. loading particle data from files.
10+
- Lib: All the particle/mesh file IO code was moved from the `splashsurf` binary crate to the `splashsurf_lib` crate. They are behind the optional `io` feature flag. This allows using the IO code in tests of the library itself (previously the code was duplicated). But these functions may also be helpful to library users building their own pipeline if they wan to to quickly test code by e.g. loading particle data from files.
711
- Lib: Replace some unsafe blocks by using `bytemuck` instead
812
- Lib: Redesign the API for SPH kernel functions
913
- Lib: Add module `sph_interpolation` for the interpolation of normals, scalar fields and vector fields to arbitrary points using SPH based interpolation

Cargo.lock

Lines changed: 59 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.7.0"
3+
version = "0.8.0"
44
authors = ["Fabian Löschner <loeschner@cs.rwth-aachen.de>"]
55
license = "MIT"
66
description = "Command-line tool for surface reconstruction of SPH particle data"
@@ -13,7 +13,7 @@ homepage = "https://github.com/w1th0utnam3/splashsurf"
1313
repository = "https://github.com/w1th0utnam3/splashsurf"
1414

1515
[dependencies]
16-
splashsurf_lib = { path = "../splashsurf_lib", version = "0.7", features = ["vtk_extras", "profiling", "io"] }
16+
splashsurf_lib = { path = "../splashsurf_lib", version = "0.8", features = ["vtk_extras", "profiling", "io"] }
1717
structopt = "0.3"
1818
log = "0.4"
1919
fern = "0.6"

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.7.0"
3+
version = "0.8.0"
44
authors = ["Fabian Löschner <loeschner@cs.rwth-aachen.de>"]
55
license = "MIT"
66
description = "Library for surface reconstruction of SPH particle data"

0 commit comments

Comments
 (0)