Skip to content

Commit 17f32e5

Browse files
committed
Prepare 0.6.4 release
1 parent 3971e17 commit 17f32e5

9 files changed

Lines changed: 39 additions & 39 deletions

File tree

.agents/sow/specs/product-scope.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ alias it as `journal` in Cargo dependencies to keep the existing
1919

2020
```toml
2121
[dependencies]
22-
journal = { package = "systemd-journal-sdk", version = "0.6.1" }
22+
journal = { package = "systemd-journal-sdk", version = "0.6.4" }
2323
```
2424

2525
The Rust workspace also publishes lower-level project-prefixed packages for

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ dependency alias:
7373

7474
```toml
7575
[dependencies]
76-
journal = { package = "systemd-journal-sdk", version = "0.6.3" }
76+
journal = { package = "systemd-journal-sdk", version = "0.6.4" }
7777
```
7878

7979
Advanced Rust consumers that need lower-level building blocks can also depend

docs/Getting-Started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Use the public Rust package for normal integrations:
1919

2020
```toml
2121
[dependencies]
22-
journal = { package = "systemd-journal-sdk", version = "0.6.1" }
22+
journal = { package = "systemd-journal-sdk", version = "0.6.4" }
2323
```
2424

2525
The alias keeps imports short:
@@ -35,7 +35,7 @@ layout.
3535
## Install Go
3636

3737
```sh
38-
go get github.com/netdata/systemd-journal-sdk/go@v0.6.1
38+
go get github.com/netdata/systemd-journal-sdk/go@v0.6.4
3939
```
4040

4141
Then import:

docs/Go-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Install the Go submodule:
44

55
```sh
6-
go get github.com/netdata/systemd-journal-sdk/go@v0.6.1
6+
go get github.com/netdata/systemd-journal-sdk/go@v0.6.4
77
```
88

99
Import the journal package:

docs/Rust-API.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The normal Rust dependency is the public SDK package:
44

55
```toml
66
[dependencies]
7-
journal = { package = "systemd-journal-sdk", version = "0.6.1" }
7+
journal = { package = "systemd-journal-sdk", version = "0.6.4" }
88
```
99

1010
Use the lower-level packages only when the public package does not expose the
@@ -13,8 +13,8 @@ type you need. For example, structured directory writes currently use
1313

1414
```toml
1515
[dependencies]
16-
journal = { package = "systemd-journal-sdk", version = "0.6.1" }
17-
journal_log_writer = { package = "systemd-journal-sdk-log-writer", version = "0.6.1" }
16+
journal = { package = "systemd-journal-sdk", version = "0.6.4" }
17+
journal_log_writer = { package = "systemd-journal-sdk-log-writer", version = "0.6.4" }
1818
```
1919

2020
## Read One File

docs/Rust-Crates-And-Packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Use `systemd-journal-sdk` for normal Rust integrations:
66

77
```toml
88
[dependencies]
9-
journal = { package = "systemd-journal-sdk", version = "0.6.1" }
9+
journal = { package = "systemd-journal-sdk", version = "0.6.4" }
1010
```
1111

1212
The alias keeps source imports in the form:

rust/Cargo.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ members = [
3535
]
3636

3737
[workspace.package]
38-
version = "0.6.3"
38+
version = "0.6.4"
3939
edition = "2024"
4040
rust-version = "1.85"
4141
license = "GPL-3.0-or-later"
@@ -152,12 +152,12 @@ serde_regex = "1.1.0"
152152
rmp-serde = "1.3.1"
153153

154154
# Internal crate path dependencies
155-
journal-common = { package = "systemd-journal-sdk-common", version = "0.6.3", path = "src/crates/journal-common" }
156-
journal-registry = { package = "systemd-journal-sdk-registry", version = "0.6.3", path = "src/crates/journal-registry" }
157-
journal-core = { package = "systemd-journal-sdk-core", version = "0.6.3", path = "src/crates/journal-core" }
158-
journal-index = { package = "systemd-journal-sdk-index", version = "0.6.3", path = "src/crates/journal-index" }
159-
journal-log-writer = { package = "systemd-journal-sdk-log-writer", version = "0.6.3", path = "src/crates/journal-log-writer" }
160-
journal-engine = { package = "systemd-journal-sdk-engine", version = "0.6.3", path = "src/crates/journal-engine" }
155+
journal-common = { package = "systemd-journal-sdk-common", version = "0.6.4", path = "src/crates/journal-common" }
156+
journal-registry = { package = "systemd-journal-sdk-registry", version = "0.6.4", path = "src/crates/journal-registry" }
157+
journal-core = { package = "systemd-journal-sdk-core", version = "0.6.4", path = "src/crates/journal-core" }
158+
journal-index = { package = "systemd-journal-sdk-index", version = "0.6.4", path = "src/crates/journal-index" }
159+
journal-log-writer = { package = "systemd-journal-sdk-log-writer", version = "0.6.4", path = "src/crates/journal-log-writer" }
160+
journal-engine = { package = "systemd-journal-sdk-engine", version = "0.6.4", path = "src/crates/journal-engine" }
161161

162162
[profile.dev]
163163
opt-level = 1

rust/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ alias if existing code should import it as `journal`:
1111

1212
```toml
1313
[dependencies]
14-
journal = { package = "systemd-journal-sdk", version = "0.6.1" }
14+
journal = { package = "systemd-journal-sdk", version = "0.6.4" }
1515
```
1616

1717
The workspace also publishes project-prefixed lower-level packages for

0 commit comments

Comments
 (0)