From 4f9fbe33a4d5ad2f31e2a980c5184be79c35dd8d Mon Sep 17 00:00:00 2001
From: Yota Toyama <raviqqe@gmail.com>
Date: Fri, 17 Jan 2025 23:14:02 +0900
Subject: [PATCH] Bump version

---
 .github/workflows/release.yaml | 2 +-
 configuration.go               | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 4cfbb59..3de479d 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -12,7 +12,7 @@ jobs:
         with:
           fetch-depth: 0
       - id: version
-        run: echo version=$(go run . --version) > ${{ github.output }}
+        run: echo version=v$(go run . --version) > ${{ github.output }}
       - uses: raviqqe/goreleaser-action@v1
         with:
           version: ${{ steps.version.outputs.version }}
diff --git a/configuration.go b/configuration.go
index 301a430..f8a809d 100644
--- a/configuration.go
+++ b/configuration.go
@@ -3,7 +3,7 @@ package main
 import "time"
 
 const (
-	version     = "2.10.6"
+	version     = "2.10.7"
 	agentName   = "muffet"
 	concurrency = 1024
 	tcpTimeout  = 5 * time.Second