Skip to content

Commit 42ae566

Browse files
committed
release: bump version to 0.1.1
1 parent ca27eae commit 42ae566

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.1] - 2025-10-09
9+
10+
### Changed
11+
- Bump version to 0.1.1
12+
813
## [0.2.0] - 2025-10-09
914

1015
### Added

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ ignore = "0.4"
4141
# Concurrency
4242
rayon = "1.10"
4343
num_cpus = "1.16"
44-
tokio = { version = "1.0", features = ["fs", "rt-multi-thread"] }
44+
tokio = { version = "1.0", features = ["fs", "rt-multi-thread", "time"] }
45+
46+
# Logging and Monitoring
47+
tracing = "0.1"
48+
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
49+
sysinfo = "0.30"
4550

4651
# Error Handling
4752
thiserror = "1.0"

crates/cli/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "code_guardian_cli"
3-
version = "0.2.0"
3+
version = "0.1.1"
44
edition = "2021"
55

66
[dependencies]
@@ -20,6 +20,10 @@ ignore = { workspace = true }
2020
git2 = { workspace = true, optional = true }
2121
num_cpus = { workspace = true }
2222
rayon = { workspace = true }
23+
tokio = { workspace = true }
24+
tracing = { workspace = true }
25+
tracing-subscriber = { workspace = true }
26+
sysinfo = { workspace = true }
2327

2428
code-guardian-core = { path = "../core" }
2529
code-guardian-storage = { path = "../storage" }

crates/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "code-guardian-core"
3-
version = "0.2.0"
3+
version = "0.1.1"
44
edition = "2021"
55

66
[dependencies]

crates/output/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "code-guardian-output"
3-
version = "0.2.0"
3+
version = "0.1.1"
44
edition = "2021"
55

66
[dependencies]

crates/storage/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "code-guardian-storage"
3-
version = "0.2.0"
3+
version = "0.1.1"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)