Skip to content

Commit cd02164

Browse files
committed
chore: bump version to 0.0.5 and update repository URL
- Update codeinput and ci crates to version 0.0.5 - Change repository URL from CodeInputCorp/cli to code-input/cli - Add CHANGELOG entry for 0.0.5 with LSP server features
1 parent dcacac8 commit cd02164

File tree

3 files changed

+39
-5
lines changed

3 files changed

+39
-5
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
1+
# Changelog
12

3+
All notable changes to this project will be documented in this file.
4+
5+
## [0.0.5] - 2025-03-02
6+
7+
### Added
8+
- **LSP Server**: Language Server Protocol implementation for IDE integration
9+
- `textDocument/hover`: Shows owners and tags when hovering over files
10+
- `textDocument/codeLens`: Displays ownership annotations above files
11+
- `textDocument/publishDiagnostics`: Warns about unowned files
12+
- Multi-root workspace support
13+
- **TCP Transport**: LSP server now supports TCP connections (`ci lsp --port <PORT>`)
14+
- **VS Code Extension**: Companion extension for Visual Studio Code (in `vscode-extension/`)
15+
16+
### Changed
17+
- Upgraded `utoipa` to 5.4.0 with schema fixes
18+
- LSP feature is now opt-in via `--features lsp` cargo flag
19+
20+
### Fixed
21+
- Safe serialization of CodeLens arguments
22+
- Output redirected to stderr for LSP compatibility
23+
24+
## [0.0.4] - 2024-12-XX
25+
26+
### Added
27+
- `infer-owners` command for intelligent owner inference
28+
- ARM64 runners for release builds (Linux, Windows, macOS)
29+
30+
### Changed
31+
- Dependency updates and formatting improvements
32+
33+
## [0.0.3] - Previous Release
34+
35+
Initial public release with core CODEOWNERS parsing and analysis features.

ci/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "ci"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
authors = ["Abid Omar <contact@omarabid.com>"]
55
edition = "2021"
6-
repository = "https://github.com/CodeInputCorp/cli"
6+
repository = "https://github.com/code-input/cli"
77
readme = "../README.md"
88
license = "MIT"
99
keywords = ["cli", "codeowners", "git", "tooling", "binary"]
@@ -24,7 +24,7 @@ syslog = ["codeinput/syslog"]
2424
lsp = ["codeinput/tower-lsp", "codeinput/tokio", "tokio"]
2525

2626
[dependencies]
27-
codeinput = { version = "0.0.4", path = "../codeinput" }
27+
codeinput = { version = "0.0.5", path = "../codeinput" }
2828
human-panic = { workspace = true }
2929
better-panic = { workspace = true }
3030
log = { workspace = true }

codeinput/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "codeinput"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
authors = ["Abid Omar <contact@omarabid.com>"]
55
edition = "2021"
6-
repository = "https://github.com/CodeInputCorp/cli"
6+
repository = "https://github.com/code-input/cli"
77
readme = "../README.md"
88
license = "MIT"
99
keywords = ["codeowners", "git", "parsing", "analysis", "tooling"]

0 commit comments

Comments
 (0)