Skip to content

Commit d7dcca5

Browse files
committed
v1.0.0-RC2
1 parent 34df1c5 commit d7dcca5

7 files changed

Lines changed: 20 additions & 20 deletions

File tree

‎CHANGELOG.md‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212

1313
- _No changes yet._
1414

15-
## [1.0.0-RC.2] - 2026-02-23
15+
## [1.0.0-RC2] - 2026-02-23
1616

1717
### Added
1818

1919
- Audit allowlist for RustSec warnings on discontinued `async-std` and `instant`
2020

2121
### Changed
2222

23-
- Version: bumped crate version to `1.0.0-rc.2`
23+
- Version: bumped crate version to `1.0.0-rc2`
2424
- Dependencies: upgraded `bytes` to 1.11.1, `pprof` to 0.14.1, `tokio` to 1.49.0, `tokio-test` to 0.4.5
25-
- Docs: mark `async-std` support as best-effort legacy and update installation snippets to `1.0.0-rc.2`
25+
- Docs: mark `async-std` support as best-effort legacy and update installation snippets to `1.0.0-rc2`
2626

2727
### Fixed
2828

@@ -219,8 +219,8 @@ Initial pre-dev release.
219219
- Project scaffolding, documentation structure, and license
220220

221221

222-
[Unreleased]: https://github.com/jamesgober/proc-daemon/compare/v1.0.0-rc.2...HEAD
223-
[1.0.0-RC.2]: https://github.com/jamesgober/proc-daemon/compare/v1.0.0-rc.1...v1.0.0-rc.2
222+
[Unreleased]: https://github.com/jamesgober/proc-daemon/compare/v1.0.0-rc2...HEAD
223+
[1.0.0-RC2]: https://github.com/jamesgober/proc-daemon/compare/v1.0.0-rc.1...v1.0.0-rc2
224224
[1.0.0-RC.1]: https://github.com/jamesgober/proc-daemon/compare/v0.9.0...v1.0.0-rc.1
225225
[0.9.0]: https://github.com/jamesgober/proc-daemon/compare/v0.6.1...v0.9.0
226226
[0.6.1]: https://github.com/jamesgober/proc-daemon/compare/v0.6.0...v0.6.1

‎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 = "proc-daemon"
3-
version = "1.0.0-rc.2"
3+
version = "1.0.0-rc2"
44
edition = "2021"
55
rust-version = "1.82.0"
66
readme = "README.md"

‎README.md‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ Add this to your `Cargo.toml`:
5151

5252
```toml
5353
[dependencies]
54-
proc-daemon = "1.0.0-rc.2"
54+
proc-daemon = "1.0.0-rc2"
5555

5656
# Optional features
57-
proc-daemon = { version = "1.0.0-rc.2", features = ["full"] }
57+
proc-daemon = { version = "1.0.0-rc2", features = ["full"] }
5858
```
5959

6060
### Feature Flags
@@ -123,7 +123,7 @@ Enable the `high-res-timing` feature to access a fast, monotonic clock backed by
123123

124124
```toml
125125
[dependencies]
126-
proc-daemon = { version = "1.0.0-rc.2", features = ["high-res-timing"] }
126+
proc-daemon = { version = "1.0.0-rc2", features = ["high-res-timing"] }
127127
```
128128

129129
```rust
@@ -143,7 +143,7 @@ Enable the `mimalloc` feature to switch the global allocator for potential perfo
143143

144144
```toml
145145
[dependencies]
146-
proc-daemon = { version = "1.0.0-rc.2", features = ["mimalloc"] }
146+
proc-daemon = { version = "1.0.0-rc2", features = ["mimalloc"] }
147147
```
148148

149149
No code changes are required—`proc-daemon` sets the global allocator when the feature is enabled.
@@ -154,7 +154,7 @@ Enable the `lockfree-coordination` feature to use a lock-free MPMC channel for c
154154

155155
```toml
156156
[dependencies]
157-
proc-daemon = { version = "1.0.0-rc.2", features = ["lockfree-coordination"] }
157+
proc-daemon = { version = "1.0.0-rc2", features = ["lockfree-coordination"] }
158158
```
159159

160160
APIs:

‎docs/API.md‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
### Install Manually
2020
```toml
2121
[dependencies]
22-
proc-daemon = "1.0.0-rc.2"
22+
proc-daemon = "1.0.0-rc2"
2323
```
2424

2525
Subscribe to events (lock-free backend):
@@ -47,7 +47,7 @@ if let Some(rx) = manager.subscribe_events() {
4747

4848
```toml
4949
[dependencies]
50-
proc-daemon = { version = "1.0.0-rc.2", features = ["profiling"] }
50+
proc-daemon = { version = "1.0.0-rc2", features = ["profiling"] }
5151
```
5252

5353
```rust
@@ -64,7 +64,7 @@ proc-daemon = { version = "1.0.0-rc.2", features = ["profiling"] }
6464

6565
```toml
6666
[dependencies]
67-
proc-daemon = { version = "1.0.0-rc.2", features = ["heap-profiling"] }
67+
proc-daemon = { version = "1.0.0-rc2", features = ["heap-profiling"] }
6868
```
6969

7070
```rust
@@ -133,7 +133,7 @@ Example enabling features:
133133

134134
```toml
135135
[dependencies]
136-
proc-daemon = { version = "1.0.0-rc.2", features = ["tokio", "metrics", "high-res-timing"] }
136+
proc-daemon = { version = "1.0.0-rc2", features = ["tokio", "metrics", "high-res-timing"] }
137137
```
138138

139139
<br>
@@ -145,7 +145,7 @@ Enable the `lockfree-coordination` feature to use a lock-free MPMC channel for s
145145

146146
```toml
147147
[dependencies]
148-
proc-daemon = { version = "1.0.0-rc.2", features = ["lockfree-coordination"] }
148+
proc-daemon = { version = "1.0.0-rc2", features = ["lockfree-coordination"] }
149149
```
150150

151151
Channel facade (always available):

‎docs/PERFORMANCE.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
[Home](../README.md)
1414

15-
Typical performance characteristics (Criterion, release, v1.0.0-rc.2):
15+
Typical performance characteristics (Criterion, release, v1.0.0-rc2):
1616
- **Daemon Creation**: ~1.87μs per init
1717
- **Subsystem Registration** (3 tasks): ~3.37μs per build
1818
- **Config Build**: ~92ns per build
@@ -50,7 +50,7 @@ Results generated with Criterion, default configuration, Tokio runtime, no metri
5050

5151
| Version | Date | Daemon create | Subsystem reg (3) | Config build | Shutdown (1 task) | Error create | Error chain |
5252
|---------|------|---------------|-------------------|--------------|-------------------|--------------|-------------|
53-
| 1.0.0-rc.2 | 2026-02-23 | 1.87 μs | 3.37 μs | 92.1 ns | 2.56 μs | 22.8 ns | 56.7 ns |
53+
| 1.0.0-rc2 | 2026-02-23 | 1.87 μs | 3.37 μs | 92.1 ns | 2.56 μs | 22.8 ns | 56.7 ns |
5454
| 0.9.0 | 2025-08-26 | 9.0 μs | 12.9 μs | 234 ns | 10.2 μs | 71.7 ns | 539 ns |
5555

5656

‎docs/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</h1>
1111
</div>
1212

13-
**Version:** 1.0.0-rc.2
13+
**Version:** 1.0.0-rc2
1414

1515

1616

0 commit comments

Comments
 (0)