We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 140d9a9 commit ca4bf2aCopy full SHA for ca4bf2a
.github/workflows/release.yml
@@ -113,3 +113,13 @@ jobs:
113
git add Formula/glimpse.rb
114
git commit -m "chore: update to ${{ github.ref_name }}"
115
git push
116
+
117
+ publish-crate:
118
+ needs: build-and-upload
119
+ runs-on: ubuntu-latest
120
+ steps:
121
+ - uses: actions/checkout@v4
122
+ - uses: dtolnay/rust-toolchain@stable
123
+ - run: cargo publish
124
+ env:
125
+ CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "glimpse"
3
-version = "0.7.2"
+version = "0.7.3"
4
edition = "2021"
5
description = "A blazingly fast tool for peeking at codebases. Perfect for loading your codebase into an LLM's context."
6
license = "MIT"
0 commit comments