Skip to content

Commit 8eb0836

Browse files
committed
Release irox-log v0.2.2
1 parent 6356cbf commit 8eb0836

File tree

3 files changed

+54
-26
lines changed

3 files changed

+54
-26
lines changed

Cargo.lock

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

libraries/log/CHANGELOG.md

+52-24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11

22

3+
## v0.2.2 (2025-01-26)
4+
5+
### New Features
6+
7+
- <csr-id-cd21b254bfac53e6304a311a5bbfe045f7a7b643/> put console logger behind std feature
8+
- <csr-id-d1cf63488838f82f9c64755256fb75ca27851801/> cleanup nostd support in imagery
9+
10+
### Commit Statistics
11+
12+
<csr-read-only-do-not-edit/>
13+
14+
- 2 commits contributed to the release over the course of 7 calendar days.
15+
- 41 days passed between releases.
16+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
17+
- 0 issues like '(#ID)' were seen in commit messages
18+
19+
### Commit Details
20+
21+
<csr-read-only-do-not-edit/>
22+
23+
<details><summary>view details</summary>
24+
25+
* **Uncategorized**
26+
- Put console logger behind std feature ([`cd21b25`](https://github.com/spmadden/irox/commit/cd21b254bfac53e6304a311a5bbfe045f7a7b643))
27+
- Cleanup nostd support in imagery ([`d1cf634`](https://github.com/spmadden/irox/commit/d1cf63488838f82f9c64755256fb75ca27851801))
28+
</details>
29+
330
## v0.2.1 (2024-12-15)
431

532
### New Features
@@ -10,7 +37,7 @@
1037

1138
<csr-read-only-do-not-edit/>
1239

13-
- 1 commit contributed to the release.
40+
- 2 commits contributed to the release.
1441
- 337 days passed between releases.
1542
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
1643
- 0 issues like '(#ID)' were seen in commit messages
@@ -22,9 +49,31 @@
2249
<details><summary>view details</summary>
2350

2451
* **Uncategorized**
52+
- Release irox-log v0.2.1 ([`5a07a76`](https://github.com/spmadden/irox/commit/5a07a76c6da7d020d4761104b68073cafa70c2b8))
2553
- Eliminate default feature 'std' for irox-time ([`4fbdda8`](https://github.com/spmadden/irox/commit/4fbdda81df4bab66572325250fbe12367a67f5ec))
2654
</details>
2755

56+
## v0.2.0 (2024-01-13)
57+
58+
### Commit Statistics
59+
60+
<csr-read-only-do-not-edit/>
61+
62+
- 1 commit contributed to the release.
63+
- 18 days passed between releases.
64+
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
65+
- 0 issues like '(#ID)' were seen in commit messages
66+
67+
### Commit Details
68+
69+
<csr-read-only-do-not-edit/>
70+
71+
<details><summary>view details</summary>
72+
73+
* **Uncategorized**
74+
- Release irox-tools v0.5.0, safety bump 17 crates ([`a46e9e2`](https://github.com/spmadden/irox/commit/a46e9e2da699f6ccd3a85b660014f0e15e59c0d0))
75+
</details>
76+
2877
## v0.1.3 (2023-12-25)
2978

3079
### New Features
@@ -35,7 +84,7 @@
3584

3685
<csr-read-only-do-not-edit/>
3786

38-
- 2 commits contributed to the release.
87+
- 2 commits contributed to the release over the course of 2 calendar days.
3988
- 11 days passed between releases.
4089
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
4190
- 0 issues like '(#ID)' were seen in commit messages
@@ -89,7 +138,7 @@
89138

90139
<csr-read-only-do-not-edit/>
91140

92-
- 2 commits contributed to the release.
141+
- 2 commits contributed to the release over the course of 3 calendar days.
93142
- 23 days passed between releases.
94143
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
95144
- 0 issues like '(#ID)' were seen in commit messages
@@ -105,27 +154,6 @@
105154
- Pivot to using Cargo.toml workspace lints ([`88ebfb5`](https://github.com/spmadden/irox/commit/88ebfb5deea5508ca54f4aaab62f6fd5a36f531c))
106155
</details>
107156

108-
## v0.2.0 (2024-01-13)
109-
110-
### Commit Statistics
111-
112-
<csr-read-only-do-not-edit/>
113-
114-
- 1 commit contributed to the release.
115-
- 18 days passed between releases.
116-
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
117-
- 0 issues like '(#ID)' were seen in commit messages
118-
119-
### Commit Details
120-
121-
<csr-read-only-do-not-edit/>
122-
123-
<details><summary>view details</summary>
124-
125-
* **Uncategorized**
126-
- Release irox-tools v0.5.0, safety bump 17 crates ([`a46e9e2`](https://github.com/spmadden/irox/commit/a46e9e2da699f6ccd3a85b660014f0e15e59c0d0))
127-
</details>
128-
129157
## v0.1.0 (2023-11-05)
130158

131159
### New Features

libraries/log/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "irox-log"
33
description = "Basic console and file logging"
44
keywords = ["irox", "log", "console"]
55
categories = ["command-line-interface", "development-tools::debugging"]
6-
version = "0.2.1"
6+
version = "0.2.2"
77
edition.workspace = true
88
authors.workspace = true
99
homepage.workspace = true

0 commit comments

Comments
 (0)