Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed May 19, 2024
1 parent 0969651 commit 5abed49
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Jolt-Rust Changelog

## v0.2.0
## [v0.3.0](https://github.com/SecondHalfGames/jolt-rust/compare/rolt-v0.2.0..rolt-v0.3.0)

### joltc-sys
- Several improvements to API coverage.
- Added several name shape types, including convex hulls and compound shapes.
- Shapes are now created by filling out a struct and creating shapes directly from that instead of creating an intermediate opaque settings type.
- `JPC_ShapeSettings_Create` has been replaced by methods for each specific shape type, like `JPC_SphereShapeSettings_Create`.
- Fixed builds with lld on Windows

### rolt
- Added safe wrappers for most of the interfaces that JoltC exposes, including `BodyFilter`.
- Changed math types like `Vec3` to be re-exported from [glam](https://crates.io/crates/glam) instead of having unique types.
- Added `FromJolt`/`IntoJolt`/`IntoRolt` helper traits to make converting to and from -sys types easier.
- Improved documentation across the board, including links to Jolt's new [official multi-versioned documentation](https://jrouwe.github.io/JoltPhysicsDocs/).

## [v0.2.0](https://github.com/SecondHalfGames/jolt-rust/compare/rolt-v0.1.0..rolt-v0.2.0)

### joltc-sys
- Significantly higher API coverage, especially for Body and BodyInterface.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/joltc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "joltc-sys"
description = "Unsafe bindings to Jolt Physics using JoltC"
version = "0.2.0+Jolt-5.0.0"
version = "0.3.0+Jolt-5.0.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/SecondHalfGames/jolt-rust"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions crates/rolt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rolt"
description = "Safe(-ish) bindings to Jolt Physics"
version = "0.2.0+Jolt-5.0.0"
version = "0.3.0+Jolt-5.0.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/SecondHalfGames/jolt-rust"
edition = "2021"
Expand All @@ -12,7 +12,7 @@ object-layer-u32 = ["joltc-sys/object-layer-u32"]

[dependencies]
glam = "0.27.0"
joltc-sys = { version = "0.2.0", path = "../joltc-sys" }
joltc-sys = { version = "0.3.0", path = "../joltc-sys" }
paste = "1.0.15"

[lints.clippy]
Expand Down

0 comments on commit 5abed49

Please sign in to comment.