Skip to content

Commit 2ba79cb

Browse files
DropFanclaude
andcommitted
chore: release v0.0.1 to crates.io
- Update version to 0.0.1 - Add cargo install instructions to README - Mark custom languages feature as planned - Fix language count (65+ instead of 70+) - Allow publish-crates job to fail if already published Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f528815 commit 2ba79cb

5 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ jobs:
124124
name: Publish to crates.io
125125
needs: [create-release, build]
126126
runs-on: ubuntu-latest
127+
continue-on-error: true # Allow failure if already published
127128
steps:
128129
- uses: actions/checkout@v4
129130
- uses: dtolnay/rust-toolchain@stable

Cargo.lock

Lines changed: 2 additions & 2 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
@@ -3,7 +3,7 @@ resolver = "2"
33
members = ["crates/*"]
44

55
[workspace.package]
6-
version = "0.1.0"
6+
version = "0.0.1"
77
edition = "2021"
88
rust-version = "1.85"
99
license = "MIT"

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ High performance code statistics tool written in Rust.
55
## Features
66

77
- **Fast**: Parallel file traversal, 30-50x faster than Python alternatives
8-
- **70+ Languages**: Built-in support for popular programming languages
8+
- **65+ Languages**: Built-in support for popular programming languages
99
- **Smart Filtering**: Respects `.gitignore`, auto-excludes build directories
1010
- **Multiple Outputs**: Console, JSON, CSV, Markdown, HTML with charts
1111
- **Complexity Analysis**: Function count, cyclomatic complexity, nesting depth
@@ -87,9 +87,11 @@ depth = 10
8787
git_info = true
8888
```
8989

90-
## Custom Languages
90+
## Custom Languages (Planned)
9191

92-
Add custom language definitions in `~/.config/codelens/languages.toml`:
92+
> **Note**: This feature is planned but not yet implemented.
93+
94+
Custom language definitions will be supported in `~/.config/codelens/languages.toml`:
9395

9496
```toml
9597
[mylang]

crates/codelens/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ name = "codelens"
1818
path = "src/main.rs"
1919

2020
[dependencies]
21-
codelens-core = { path = "../codelens-core" }
21+
codelens-core = { version = "0.0.1", path = "../codelens-core" }
2222

2323
# CLI
2424
clap.workspace = true

0 commit comments

Comments
 (0)