Skip to content

Commit

Permalink
Release v0.3.1 (nice)
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed May 19, 2024
1 parent 5abed49 commit dd8c143
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Jolt-Rust Changelog

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

### joltc-sys and rolt
- Added "Requirements" section to README that lists build requirements
- Removed `Cargo.toml` line because I forgot to update it and would probably forget to update it a lot more in the future.

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

### joltc-sys
Expand Down
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.3.0+Jolt-5.0.0"
version = "0.3.1+Jolt-5.0.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/SecondHalfGames/jolt-rust"
edition = "2021"
Expand Down
8 changes: 4 additions & 4 deletions crates/joltc-sys/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# `joltc-sys` — Jolt bindings via [JoltC]
This crate contains unsafe bindings to JoltC.

```toml
joltc-sys = "0.2.0"
```
## Build Requirements
- CMake 3.16 or newer
- `libclang`, see the [bindgen guide](https://rust-lang.github.io/rust-bindgen/requirements.html) for installation steps.

Features:
## Features
- `double-precision`: Enable higher precision simulation using doubles instead of floats.
- `object-layer-u32`: Changes the ObjectLayer type to use 32 bits instead of 16 bits.
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.3.0+Jolt-5.0.0"
version = "0.3.1+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.3.0", path = "../joltc-sys" }
joltc-sys = { version = "0.3.1", path = "../joltc-sys" }
paste = "1.0.15"

[lints.clippy]
Expand Down
10 changes: 5 additions & 5 deletions crates/rolt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ This crate contains a higher-level wrapper around JoltC, providing ergonomics co

The safety of this crate is currently provided on a best-effort basis.

```toml
rolt = "0.2.0"
```

For more complete and unsafe bindings, see [joltc-sys](https://crates.io/crates/joltc-sys).

Features:
## Build Requirements
- CMake 3.16 or newer
- `libclang`, see the [bindgen guide](https://rust-lang.github.io/rust-bindgen/requirements.html) for installation steps.

## Features
- `double-precision`: Forwards to `joltc-sys/double-precision`
- `object-layer-u32`: Forwards to `joltc-sys/object-layer-u32`

0 comments on commit dd8c143

Please sign in to comment.