Skip to content

Commit da45a93

Browse files
committed
Release irox-bits v0.4.2
1 parent 47084c9 commit da45a93

File tree

5 files changed

+40
-5
lines changed

5 files changed

+40
-5
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

irox/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ irox-sirf = { version = "^0.4.1", optional = true, path = "../data-formats/sirf"
7373
irox-influxdb_v1 = { version = "^0.6.0", optional = true, path = "../interfaces/influxdb_v1" }
7474
irox-winlocation-api = { version = "^0.5.2", optional = true, path = "../interfaces/win-location-api" }
7575

76-
irox-bits = { version = "^0.4.0", optional = true, path = "../libraries/bits" }
76+
irox-bits = { version = "^0.4.2", optional = true, path = "../libraries/bits" }
7777
irox-build-rs = { version = "^0.2.4", optional = true, path = "../libraries/build-rs" }
7878
irox-carto = { version = "^0.6.4", optional = true, path = "../libraries/carto" }
7979
irox-derive-helpers = { version = "^0.1.0", optional = true, path = "../libraries/derive-helpers" }

libraries/bits/CHANGELOG.md

+36-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11

22

3+
## v0.4.2 (2025-03-01)
4+
5+
### Chore
6+
7+
- <csr-id-1f48b70c64fb0cde031bf379fe3d6b5b276b6f51/> cleanup bitmask order-of-operations
8+
- <csr-id-de5e67fb00da4d87ac75adb7592f4848ba2399b2/> elude all the lifetimes!
9+
10+
### New Features
11+
12+
- <csr-id-f91538d1cb3ebae7eaee1273cbaaca08979b99e2/> add impl WriteToBEBits for Arc<String>
13+
- <csr-id-4f516d71e4db3ff1874da92d226939ad2e1478de/> fix lints for 1.84, update to 1.84
14+
15+
### Commit Statistics
16+
17+
<csr-read-only-do-not-edit/>
18+
19+
- 4 commits contributed to the release over the course of 13 calendar days.
20+
- 17 days passed between releases.
21+
- 4 commits were understood as [conventional](https://www.conventionalcommits.org).
22+
- 0 issues like '(#ID)' were seen in commit messages
23+
24+
### Commit Details
25+
26+
<csr-read-only-do-not-edit/>
27+
28+
<details><summary>view details</summary>
29+
30+
* **Uncategorized**
31+
- Add impl WriteToBEBits for Arc<String> ([`f91538d`](https://github.com/spmadden/irox/commit/f91538d1cb3ebae7eaee1273cbaaca08979b99e2))
32+
- Fix lints for 1.84, update to 1.84 ([`4f516d7`](https://github.com/spmadden/irox/commit/4f516d71e4db3ff1874da92d226939ad2e1478de))
33+
- Cleanup bitmask order-of-operations ([`1f48b70`](https://github.com/spmadden/irox/commit/1f48b70c64fb0cde031bf379fe3d6b5b276b6f51))
34+
- Elude all the lifetimes! ([`de5e67f`](https://github.com/spmadden/irox/commit/de5e67fb00da4d87ac75adb7592f4848ba2399b2))
35+
</details>
36+
337
## v0.4.1 (2025-02-12)
438

539
### New Features
@@ -11,7 +45,7 @@
1145

1246
<csr-read-only-do-not-edit/>
1347

14-
- 1 commit contributed to the release.
48+
- 2 commits contributed to the release.
1549
- 17 days passed between releases.
1650
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
1751
- 0 issues like '(#ID)' were seen in commit messages
@@ -23,6 +57,7 @@
2357
<details><summary>view details</summary>
2458

2559
* **Uncategorized**
60+
- Release irox-bits v0.4.1 ([`ff0885f`](https://github.com/spmadden/irox/commit/ff0885f4c2955b71b920efe59df0ca0dd7e5424b))
2661
- Add LE bit encoding/decoding for strings ([`d428007`](https://github.com/spmadden/irox/commit/d428007e46592c8b1c15d2e83abd34f94a7a8540))
2762
</details>
2863

libraries/bits/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "irox-bits"
33
description = "Bits & Bobs. No-std/No-alloc bit/byte manipulation of streams"
44
keywords = ["irox"]
55
categories = ["no-std::no-alloc", "encoding", "parsing", "embedded"]
6-
version= "0.4.1"
6+
version= "0.4.2"
77
edition.workspace = true
88
authors.workspace = true
99
homepage.workspace = true

libraries/cryptids/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ bench = false
3434

3535
[[bench]]
3636
name = "x25519"
37-
harness = false
37+
harness = false

0 commit comments

Comments
 (0)