Skip to content

Commit

Permalink
Bump dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
n3vu0r committed Jun 12, 2024
1 parent befc5b5 commit a6975ee
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 10 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trackball"
version = "0.12.0"
version = "0.13.0"
rust-version = "1.71.0"
authors = ["Rouven Spreckels <[email protected]>"]
edition = "2021"
Expand Down Expand Up @@ -37,16 +37,16 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
heapless = { version = "0.8.0", default-features = false }
nalgebra = { version = "0.32.4", default-features = false, features = ["libm-force"] }
nalgebra = { version = "0.32.6", default-features = false, features = ["libm-force"] }
simba = { version = "0.8.1", default-features = false, features = ["libm"] }
approx = { version = "0.5.1", default-features = false }
serde = { version = "1.0.197", default-features = false, features = ["derive"], optional = true }
serde = { version = "1.0.203", default-features = false, features = ["derive"], optional = true }
rkyv = { version = "0.7.44", default-features = false, optional = true }

[features]
glam = ["nalgebra/convert-glam025"]
glam = ["nalgebra/convert-glam027"]
serde = ["dep:serde", "nalgebra/serde-serialize-no-std", "simba/serde_serialize"]
rkyv = ["dep:rkyv", "nalgebra/rkyv-serialize-no-std", "simba/rkyv-serialize"]

[build-dependencies]
cc = { version = "1.0.86", optional = true }
cc = { version = "1.0.99", optional = true }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Identical [C11 implementation](c11) for [`Orbit`] operation handler behind `cc`

```toml
[dependencies]
trackball = { version = "0.12.0", features = ["cc"] }
trackball = { version = "0.13.0", features = ["cc"] }
```

[`Orbit`]: https://docs.rs/trackball/latest/trackball/struct.Orbit.html
Expand Down
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.13.0 (2024-06-12)

* Bump dependencies.

# Version 0.12.0 (2024-02-21)

* Support latest `glam`.
Expand Down
2 changes: 1 addition & 1 deletion c11/examples/example.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021-2023 Rouven Spreckels <[email protected]>
// Copyright © 2021-2024 Rouven Spreckels <[email protected]>
// SPDX-License-Identifier: MIT OR Apache-2.0

#include "trackball.h"
Expand Down
2 changes: 1 addition & 1 deletion c11/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('trackball', 'c',
version : '0.12.0',
version : '0.13.0',
license : 'MIT OR Apache-2.0',
default_options : ['c_std=c11'])

Expand Down
2 changes: 1 addition & 1 deletion c11/src/trackball.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021-2023 Rouven Spreckels <[email protected]>
// Copyright © 2021-2024 Rouven Spreckels <[email protected]>
// SPDX-License-Identifier: MIT OR Apache-2.0
/// \file
/// \brief API source file.
Expand Down
2 changes: 1 addition & 1 deletion c11/src/trackball.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/// [S2CID]: https://en.wikipedia.org/wiki/S2CID_(identifier)
/// [44199608]: https://api.semanticscholar.org/CorpusID:44199608
///
/// \version v0.12.0
/// \version v0.13.0
/// \author Rouven Spreckels <[email protected]>
/// \copyright MIT OR Apache-2.0
///
Expand Down

0 comments on commit a6975ee

Please sign in to comment.