Skip to content

Commit

Permalink
Prepare release.
Browse files Browse the repository at this point in the history
  • Loading branch information
n3vu0r committed Feb 21, 2024
1 parent 7745517 commit 40c764f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ heapless = { version = "0.8.0", default-features = false }
nalgebra = { version = "0.32.4", 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.196", default-features = false, features = ["derive"], optional = true }
serde = { version = "1.0.197", default-features = false, features = ["derive"], optional = true }
rkyv = { version = "0.7.44", default-features = false, optional = true }

[features]
Expand All @@ -49,4 +49,4 @@ 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.83", optional = true }
cc = { version = "1.0.86", optional = true }
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,14 @@ Identical [C11 implementation](c11) for [`Orbit`] operation handler behind `cc`

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

[`Orbit`]: https://docs.rs/trackball/latest/trackball/struct.Orbit.html

## License

Copyright © 2021-2023 Rouven Spreckels <[email protected]>
Copyright © 2021-2024 Rouven Spreckels <[email protected]>

This project is licensed under either of

Expand Down
5 changes: 5 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version 0.12.0 (2024-02-21)

* Support latest `glam`.
* Implement `Delta::Track`, changing behavior of `Frame::set_target`.

# Version 0.11.2 (2023-08-19)

* Make some types `Copy`.
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.11.1',
version : '0.12.0',
license : 'MIT OR Apache-2.0',
default_options : ['c_std=c11'])

Expand Down
4 changes: 2 additions & 2 deletions c11/src/trackball.h
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 header file.
Expand All @@ -18,7 +18,7 @@
/// [S2CID]: https://en.wikipedia.org/wiki/S2CID_(identifier)
/// [44199608]: https://api.semanticscholar.org/CorpusID:44199608
///
/// \version v0.11.1
/// \version v0.12.0
/// \author Rouven Spreckels <[email protected]>
/// \copyright MIT OR Apache-2.0
///
Expand Down

0 comments on commit 40c764f

Please sign in to comment.