summaryrefslogtreecommitdiff
path: root/internal/version
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-12-31 17:28:34 +0200
committerPaul Buetow <paul@buetow.org>2025-12-31 17:28:46 +0200
commit545e65fe16c761822f0999b8f4ab05f1cd325975 (patch)
treea4afdab1acfa8114219c831fed3f02de8dab4a64 /internal/version
parentc04911dfa213b7d3009436e0365d17ed49001759 (diff)
feat: implement logarithmic scoring system for showcase rankingv0.11.0
- Remove vibe-coded and AI-assisted detection from showcase - Add project rank numbers to showcase headers - Implement logarithmic score: log10(LOC) * 1000 / (avgCommitAge + 1) - Replace 'Recent Activity' display with 'Score' - Update sorting to use score (highest first) - Score balances project size and recent activity - Bump version to 0.11.0 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'internal/version')
-rw-r--r--internal/version/version.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/version/version.go b/internal/version/version.go
index 39a4195..a5fc76b 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -7,7 +7,7 @@ import (
var (
// Version is the current version of gitsyncer
-Version = "0.10.1"
+Version = "0.11.0"
// GitCommit is the git commit hash at build time
GitCommit = "unknown"