Skip to content

Commit f9204ff

Browse files
committed
v0.2.0
1 parent 094e412 commit f9204ff

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
88

99
### Added
1010

11+
### Changed
12+
13+
### Removed
14+
15+
### Fixed
16+
17+
## [0.2.0] - 2024-03-25
18+
19+
### Added
20+
1121
- All the wrapper structures now implement `Deref` of the wrapped `leap-sys` structures
1222
- All the reference wrapper structures now implement `Clone` and `Copy`
1323
- The opt-in features `glam` and `nalgebra` add conversion method for vectors and quaternions to these libraries.
@@ -17,11 +27,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
1727
- Improved the examples to avoid common timeout unwrap()
1828
- The vectors and quaternion are not anymore copied
1929
- **Breaking** All the non-owning wrappers (most of them) are now named with `Ref` as a suffix.
20-
`Hand` becomes `HandRef`, `Digit` becomes `DigitRef`, etc...
30+
`Hand` becomes `HandRef`, `Digit` becomes `DigitRef`, etc.
2131

2232
### Removed
2333

2434
- **Breaking** All the trivial accessor functions were removed, in favour of the `Deref` trait
35+
`vector.x()` becomes `vector.x`, `hand.pinch_distance()` becomes `hand.pinch_distance`, etc.
2536

2637
### Fixed
2738

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leaprs"
3-
version = "0.1.4"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Pierre Lulé <pierre@lule.fr>"]
66
description = "Safe wrapper for the LeapC Ultraleap (Leap Motion) hand tracking device API."

0 commit comments

Comments
 (0)