Skip to content

Commit 7e17856

Browse files
committed
Merge branch 'main' into develop - resolve conflicts
1 parent 0061f49 commit 7e17856

File tree

5 files changed

+34
-38
lines changed

5 files changed

+34
-38
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ 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.2] - 2025-10-09
9+
10+
### Fixed
11+
- GitHub Actions release workflow binary name mismatch (code-guardian-cli vs code_guardian_cli)
12+
- Duplicate anyhow import in monitoring module
13+
- Syntax error in CLI main.rs tracing initialization
14+
15+
### Added
16+
- Automatic changelog integration in release workflow
17+
- Enhanced release descriptions from CHANGELOG.md
18+
- Comprehensive workflow issue analysis and documentation
19+
20+
### Changed
21+
- Release workflow now extracts and uses proper changelog content
22+
- Improved error handling in release process
23+
- Updated existing v0.1.1 release with proper description
24+
- Bump version to 0.1.1
25+
26+
## [0.1.1] - 2025-10-09
827

928
### Added
1029
- Git CLI commands and GitIntegration module for repository operations
@@ -56,4 +75,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5675
- CI/CD workflows for continuous integration, documentation generation, and automated releases.
5776
- Agent-based development system for collaborative and automated code management.
5877
- Benchmarks and performance tests to ensure optimal scanning speed.
59-
- Test suites across crates for reliability and code quality.
78+
- Test suites across crates for reliability and code quality.

Cargo.lock

Lines changed: 2 additions & 30 deletions
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
@@ -41,7 +41,7 @@ ignore = "0.4"
4141
# Concurrency
4242
rayon = "1.10"
4343
num_cpus = "1.16"
44-
tokio = { version = "1.0", features = ["fs", "rt-multi-thread", "time"] }
44+
tokio = { version = "1.0", features = ["fs", "rt-multi-thread", "time", "sync", "macros"] }
4545

4646
# Logging and Monitoring
4747
tracing = "0.1"

crates/cli/Cargo.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,14 @@ ignore = { workspace = true }
2020
git2 = { workspace = true, optional = true }
2121
num_cpus = { workspace = true }
2222
rayon = { workspace = true }
23-
tokio = { version = "1.0", features = ["full"] }
23+
tokio = { workspace = true }
2424
tracing = { workspace = true }
25-
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
25+
tracing-subscriber = { workspace = true }
26+
sysinfo = { workspace = true }
27+
28+
code-guardian-core = { path = "../core" }
29+
code-guardian-storage = { path = "../storage" }
30+
code-guardian-output = { path = "../output" }
2631

2732
[dev-dependencies]
2833
assert_cmd = "2.0"
@@ -32,4 +37,3 @@ tempfile = "3.0"
3237
[features]
3338
default = []
3439
git = ["git2"]
35-

crates/core/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ toml = "0.8"
2222
uuid = { version = "1.0", features = ["v4"] }
2323
memmap2 = "0.9"
2424
smallvec = { version = "1.13", features = ["union"] }
25-
tokio = { version = "1.0", features = ["full"] }
26-
tracing = "0.1"
27-
sysinfo = "0.30"
25+
26+
tracing = "0.1"
27+
sysinfo = "0.30"
28+
tokio = { workspace = true }
2829

2930
[dev-dependencies]
3031
tempfile = { workspace = true }

0 commit comments

Comments
 (0)