Skip to content

Commit

Permalink
Bump to version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Canleskis committed Mar 21, 2024
1 parent c52957f commit 14ecff6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resolver = "2"

[workspace.package]
edition = "2021"
version = "0.7.0-dev"
version = "0.7.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Canleskis/particular"
authors = ["Canleskis"]
Expand Down
4 changes: 3 additions & 1 deletion particular/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased - 2023-02-28
## [0.7.0] - 2023-03-21

### Added

Expand Down Expand Up @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `BruteForceSIMD` generic over the lane count.
- `build_node` takes `position` and `compute` functions instead of using traits and computes a square `BoundingBox`. Use `build_node_with` to provide a specific `BoundingBox`.
- `Particle` trait only has the `Array` associated type and `position` expects this array type.
- Deriving `Particle` requires `#[dim]` attribute.
- `accelerations` returns an iterator of arrays.
- Merge `algorithms` and `compute_method` in one module with the name of the latter.
- The size of `SizedOrthant` is no longer generic and is instead a `BoundingBox`
Expand Down Expand Up @@ -206,6 +207,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[0.7.0]: https://github.com/Canleskis/particular/compare/v0.6.1...v0.7.0
[0.6.1]: https://github.com/Canleskis/particular/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/Canleskis/particular/compare/v0.5.2...v0.6.0
[0.5.2]: https://github.com/Canleskis/particular/compare/v0.5.1...v0.5.2
Expand Down
3 changes: 2 additions & 1 deletion particular/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ parallel = ["dep:rayon"]
gpu = ["dep:wgpu", "dep:flume", "dep:bytemuck", "dep:pollster"]

[dependencies]
particular_derive = { version = "0.7.0-dev", path = "../particular_derive" }
particular_derive = { version = "0.7.0", path = "../particular_derive" }

ultraviolet = { version = "0.9", features = ["f64", "bytemuck"] }
wide = "0.7"
Expand All @@ -41,5 +41,6 @@ rand = "0.8"
all-features = true

[[bench]]
path = "benches/benchmark.rs"
name = "benchmark"
harness = false
4 changes: 0 additions & 4 deletions particular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
Particular is a crate providing a simple way to simulate N-body gravitational interaction of
particles in Rust.

Please note that this branch is for development purposes and may not represent the latest stable
release of the library. For the most recent stable version, refer to the
[`latest`](https://github.com/Canleskis/particular/tree/latest) branch.

## [Change log](https://github.com/Canleskis/particular/blob/main/particular/CHANGELOG.md)

## Goals
Expand Down

0 comments on commit 14ecff6

Please sign in to comment.