Skip to content

Commit 42068a7

Browse files
committed
Release hid-io-protocol v0.1.6, hid-io-core v0.1.4
1 parent 5057f66 commit 42068a7

File tree

5 files changed

+89
-13
lines changed

5 files changed

+89
-13
lines changed

CHANGELOG.md

Lines changed: 47 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,56 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.1.4 (2023-09-07)
9+
10+
### New Features
11+
12+
- <csr-id-87cd06d6ea76bebb924629d86fb78fa5b9f67fe2/> Add hall effect manu test data tracking
13+
- Supports partial strobe data updates (only printing after getting
14+
enough data for a full scan)
15+
- <csr-id-6d44300e247b0e74459c8e2ad54061b5346a01ce/> Add levelcheck column and mode set commands to hid-io-core + capnp
16+
17+
### Bug Fixes
18+
19+
- <csr-id-5057f664cb2f929b2cce1a3f08167123ffa6e6e2/> clippy: usage of an `Arc` that is not `Send` or `Sync`
20+
- <csr-id-1fa6aa9333157f08ac6f0a01ebac280fd693db16/> Update packages and fix nightly drain_filter
21+
- <csr-id-61815a23bfcf7a8387966818be4d0e2e6333c879/> https://github.com/japaric/heapless/issues/252 was fixed
22+
- Can use zero length arrays as originally intended
23+
24+
### Commit Statistics
25+
26+
<csr-read-only-do-not-edit/>
27+
28+
- 5 commits contributed to the release over the course of 94 calendar days.
29+
- 94 days passed between releases.
30+
- 5 commits were understood as [conventional](https://www.conventionalcommits.org).
31+
- 0 issues like '(#ID)' were seen in commit messages
32+
33+
### Commit Details
34+
35+
<csr-read-only-do-not-edit/>
36+
37+
<details><summary>view details</summary>
38+
39+
* **Uncategorized**
40+
- Clippy: usage of an `Arc` that is not `Send` or `Sync` ([`5057f66`](https://github.com/hid-io/hid-io-core/commit/5057f664cb2f929b2cce1a3f08167123ffa6e6e2))
41+
- Add hall effect manu test data tracking ([`87cd06d`](https://github.com/hid-io/hid-io-core/commit/87cd06d6ea76bebb924629d86fb78fa5b9f67fe2))
42+
- Update packages and fix nightly drain_filter ([`1fa6aa9`](https://github.com/hid-io/hid-io-core/commit/1fa6aa9333157f08ac6f0a01ebac280fd693db16))
43+
- Https://github.com/japaric/heapless/issues/252 was fixed ([`61815a2`](https://github.com/hid-io/hid-io-core/commit/61815a23bfcf7a8387966818be4d0e2e6333c879))
44+
- Add levelcheck column and mode set commands to hid-io-core + capnp ([`6d44300`](https://github.com/hid-io/hid-io-core/commit/6d44300e247b0e74459c8e2ad54061b5346a01ce))
45+
</details>
46+
847
## 0.1.3 (2023-06-05)
948

1049
### Bug Fixes
1150

51+
<csr-id-559757292afa1cb1e7a8d0ee28d75a3ae8a26ab2/>
52+
1253
- <csr-id-62af0b510a7399645469e72f10fbfeffdb5edc7a/> Update dependencies and small fixes
1354
- Fix hid-io-client example tool pixel direct range
14-
- flexi_logger 0.24 -> 0.25
15-
- uhid-virt 0.0.5 -> official 0.0.6
16-
- clippy fixes
17-
- <csr-id-559757292afa1cb1e7a8d0ee28d75a3ae8a26ab2/> latest clippy warnings (format string identifiers)
55+
- flexi_logger 0.24 -> 0.25
56+
- uhid-virt 0.0.5 -> official 0.0.6
57+
- clippy fixes
1858

1959
### Commit Statistics
2060

@@ -36,6 +76,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3676
- Latest clippy warnings (format string identifiers) ([`5597572`](https://github.com/hid-io/hid-io-core/commit/559757292afa1cb1e7a8d0ee28d75a3ae8a26ab2))
3777
</details>
3878

79+
<csr-unknown>
80+
latest clippy warnings (format string identifiers)<csr-unknown/>
81+
3982
## 0.1.2 (2022-11-29)
4083

4184
### Major Changes

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hid-io-core"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["Jacob Alexander <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = """
@@ -101,7 +101,7 @@ futures-util = { version = "0.3", optional = true }
101101
glob = { version = "0.3", optional = true }
102102
heapless = { version = "0.7" }
103103
hidapi = { version = "2.3.3", default-features = false, features = ["linux-native"], optional = true }
104-
hid-io-protocol = { path = "hid-io-protocol", version = "^0.1.5" }
104+
hid-io-protocol = { path = "hid-io-protocol", version = "^0.1.6" }
105105
libc = { version = "0.2", optional = true }
106106
log = "0.4"
107107
nanoid = { version = "0.4", optional = true }

hid-io-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name = "hid_io_client"
2020
capnp = { version = "0.14" }
2121
capnp-rpc = { version = "0.14" }
2222
futures = { version = "0.3" }
23-
hid-io-core = { version = "^0.1.3", path = ".." }
23+
hid-io-core = { version = "^0.1.4", path = ".." }
2424
log = { version = "0.4" }
2525
rand = "0.8"
2626
rustls = { version = "0.20", features = ["dangerous_configuration"] }

hid-io-protocol/CHANGELOG.md

Lines changed: 38 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,34 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.1.6 (2023-09-07)
9+
10+
### Bug Fixes
11+
12+
- <csr-id-3a10cc739257cac1ff172a48146a1643cb33bf65/> Remove internal lang_items feature
13+
- <csr-id-61815a23bfcf7a8387966818be4d0e2e6333c879/> https://github.com/japaric/heapless/issues/252 was fixed
14+
- Can use zero length arrays as originally intended
15+
16+
### Commit Statistics
17+
18+
<csr-read-only-do-not-edit/>
19+
20+
- 2 commits contributed to the release over the course of 94 calendar days.
21+
- 94 days passed between releases.
22+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
23+
- 0 issues like '(#ID)' were seen in commit messages
24+
25+
### Commit Details
26+
27+
<csr-read-only-do-not-edit/>
28+
29+
<details><summary>view details</summary>
30+
31+
* **Uncategorized**
32+
- Remove internal lang_items feature ([`3a10cc7`](https://github.com/hid-io/hid-io-core/commit/3a10cc739257cac1ff172a48146a1643cb33bf65))
33+
- Https://github.com/japaric/heapless/issues/252 was fixed ([`61815a2`](https://github.com/hid-io/hid-io-core/commit/61815a23bfcf7a8387966818be4d0e2e6333c879))
34+
</details>
35+
836
## 0.1.5 (2023-06-05)
937

1038
### New Features
@@ -14,18 +42,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1442

1543
### Bug Fixes
1644

45+
<csr-id-559757292afa1cb1e7a8d0ee28d75a3ae8a26ab2/>
46+
1747
- <csr-id-62af0b510a7399645469e72f10fbfeffdb5edc7a/> Update dependencies and small fixes
1848
- Fix hid-io-client example tool pixel direct range
19-
- flexi_logger 0.24 -> 0.25
20-
- uhid-virt 0.0.5 -> official 0.0.6
21-
- clippy fixes
22-
- <csr-id-559757292afa1cb1e7a8d0ee28d75a3ae8a26ab2/> latest clippy warnings (format string identifiers)
49+
- flexi_logger 0.24 -> 0.25
50+
- uhid-virt 0.0.5 -> official 0.0.6
51+
- clippy fixes
2352

2453
### Commit Statistics
2554

2655
<csr-read-only-do-not-edit/>
2756

28-
- 4 commits contributed to the release over the course of 169 calendar days.
57+
- 5 commits contributed to the release over the course of 169 calendar days.
2958
- 187 days passed between releases.
3059
- 4 commits were understood as [conventional](https://www.conventionalcommits.org).
3160
- 0 issues like '(#ID)' were seen in commit messages
@@ -37,12 +66,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3766
<details><summary>view details</summary>
3867

3968
* **Uncategorized**
69+
- Release hid-io-protocol v0.1.5, hid-io-core v0.1.3 ([`95088fc`](https://github.com/hid-io/hid-io-core/commit/95088fc5e913226d1f55b3d83ec8a7553b916368))
4070
- Add ModeSet HallEffectSensorTest manufacturing commands ([`cd67bfe`](https://github.com/hid-io/hid-io-core/commit/cd67bfe34a323b3a69f244998969a9b713c67358))
4171
- Update dependencies and small fixes ([`62af0b5`](https://github.com/hid-io/hid-io-core/commit/62af0b510a7399645469e72f10fbfeffdb5edc7a))
4272
- Latest clippy warnings (format string identifiers) ([`5597572`](https://github.com/hid-io/hid-io-core/commit/559757292afa1cb1e7a8d0ee28d75a3ae8a26ab2))
4373
- Add more HallEffectSensorTest commands (h0050) ([`0b92a80`](https://github.com/hid-io/hid-io-core/commit/0b92a8036a4c74def1e25f5151cf6056b2ac9fe4))
4474
</details>
4575

76+
<csr-unknown>
77+
latest clippy warnings (format string identifiers)<csr-unknown/>
78+
4679
## 0.1.4 (2022-11-29)
4780

4881
### Major Changes

hid-io-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hid-io-protocol"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["Jacob Alexander <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = """

0 commit comments

Comments
 (0)