Skip to content

Commit 91b501c

Browse files
committed
chore: release v0.8.0
1 parent 81d4b5e commit 91b501c

4 files changed

Lines changed: 20 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
contents: write
1212
packages: write
1313
steps:
14-
- uses: actions/checkout@v4
15-
- uses: actions/cache@v4
14+
- uses: actions/checkout@v6
15+
- uses: actions/cache@v5
1616
with:
1717
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
1818
restore-keys: ${{ runner.os }}-cargo-
@@ -26,6 +26,7 @@ jobs:
2626
2727
- run: rustup update --no-self-update stable && rustup default stable
2828
- run: cargo fmt --check
29+
- run: cargo clippy --all-targets --all-features --locked -- -D warnings
2930
- run: cargo check --release --locked
3031
- run: cargo test
3132

@@ -43,7 +44,7 @@ jobs:
4344
- uses: docker/setup-buildx-action@v3
4445

4546
- name: Login to ghcr.io
46-
if: ${{ github.ref == 'refs/heads/main' }} || ${{ startsWith(github.ref, 'refs/tags/v') }}
47+
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') }}
4748
uses: docker/login-action@v3
4849
with:
4950
registry: ghcr.io

Cargo.lock

Lines changed: 1 addition & 1 deletion
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
@@ -1,6 +1,6 @@
11
[package]
22
name = "ghstats"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
edition = "2024"
55

66
[dependencies]

changelog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## v0.8.0 – 2026-04-01
2+
3+
### Features
4+
- Added search and owner filtering to the repositories table (#23, by @larsborn)
5+
- Improved repo metrics UI layout
6+
7+
### Improvements
8+
- Simplified Docker image setup with fewer dependencies
9+
- Migrated to Rust 2024 edition with refreshed dependencies
10+
11+
**Full Changelog**: https://github.com/vladkens/ghstats/compare/v0.7.1...v0.8.0
12+
13+
---
14+
115
## v0.7.1 – 2024-12-18
216

317
### Fixes

0 commit comments

Comments
 (0)