Skip to content

Commit 97933f3

Browse files
committed
chore: release version 0.1.0
1 parent f2399f7 commit 97933f3

4 files changed

Lines changed: 34 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,28 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [0.0.5] - 2025-03-02
5+
## [0.1.0] - 2026-03-07
66

77
### Added
8+
9+
- **VS Code Extension**: Companion extension for Visual Studio Code with LSP integration
10+
- **Neovim Plugin**: Full Neovim support with telescope integration for browsing files by ownership
11+
- **Vim Plugin**: Vim plugin for CODEOWNERS LSP integration
12+
- **LSP Enhancements**:
13+
- Inlay hints support for CODEOWNERS patterns
14+
- Custom commands: `listFiles`, `listOwners`, `listTags`, `getFileOwnership`
15+
- TCP transport support (`ci lsp --port <PORT>`)
16+
17+
### Changed
18+
19+
- Refactored LSP server into modular structure for better maintainability
20+
- Simplified VS Code extension by removing unused features
21+
- Improved telescope file pickers with proper entry makers
22+
23+
## [0.0.5] - 2026-03-02
24+
25+
### Added
26+
827
- **LSP Server**: Language Server Protocol implementation for IDE integration
928
- `textDocument/hover`: Shows owners and tags when hovering over files
1029
- `textDocument/codeLens`: Displays ownership annotations above files
@@ -14,20 +33,24 @@ All notable changes to this project will be documented in this file.
1433
- **VS Code Extension**: Companion extension for Visual Studio Code (in `vscode-extension/`)
1534

1635
### Changed
36+
1737
- Upgraded `utoipa` to 5.4.0 with schema fixes
1838
- LSP feature is now opt-in via `--features lsp` cargo flag
1939

2040
### Fixed
41+
2142
- Safe serialization of CodeLens arguments
2243
- Output redirected to stderr for LSP compatibility
2344

24-
## [0.0.4] - 2024-12-XX
45+
## [0.0.4] - 2025-12-XX
2546

2647
### Added
48+
2749
- `infer-owners` command for intelligent owner inference
2850
- ARM64 runners for release builds (Linux, Windows, macOS)
2951

3052
### Changed
53+
3154
- Dependency updates and formatting improvements
3255

3356
## [0.0.3] - Previous Release

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@
5959

6060
### Pre-built Binaries
6161

62-
**Latest Release: `0.0.4`**
62+
**Latest Release: `0.1.0`**
6363

64-
- **Linux x86_64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.0.4/ci-linux-x86_64)
65-
- **Linux ARM64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.0.4/ci-linux-aarch64)
66-
- **Windows x86_64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.0.4/ci-windows-x86_64.exe)
67-
- **macOS Intel**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.0.4/ci-macos-x86_64)
68-
- **macOS Apple Silicon**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.0.4/ci-macos-aarch64)
64+
- **Linux x86_64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.1.0/ci-linux-x86_64)
65+
- **Linux ARM64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.1.0/ci-linux-aarch64)
66+
- **Windows x86_64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.1.0/ci-windows-x86_64.exe)
67+
- **macOS Intel**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.1.0/ci-macos-x86_64)
68+
- **macOS Apple Silicon**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.1.0/ci-macos-aarch64)
6969

7070
#### Installation Instructions
7171

ci/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ci"
3-
version = "0.0.5"
3+
version = "0.1.0"
44
authors = ["Abid Omar <contact@omarabid.com>"]
55
edition = "2021"
66
repository = "https://github.com/code-input/cli"
@@ -24,7 +24,7 @@ syslog = ["codeinput/syslog"]
2424
lsp = ["codeinput/tower-lsp", "codeinput/tokio", "tokio"]
2525

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

codeinput/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codeinput"
3-
version = "0.0.5"
3+
version = "0.1.0"
44
authors = ["Abid Omar <contact@omarabid.com>"]
55
edition = "2021"
66
repository = "https://github.com/code-input/cli"

0 commit comments

Comments
 (0)