From 9a50960b80e5870ef274096139a15cd9af8b7cf2 Mon Sep 17 00:00:00 2001 From: awolverp Date: Sat, 4 Feb 2023 14:39:34 +0330 Subject: [PATCH] Update to 2.4.10 --- CHANGELOG.md | 4 ++++ internal/kickcore/kickcore.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d47dac..70b7989 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.4.10] - 2023-2-4 +### Fixed +- Fixed go.mod error + ## [2.4.9] - 2023-2-4 ### Fixed - Project main application diff --git a/internal/kickcore/kickcore.go b/internal/kickcore/kickcore.go index acf29b4..c59e736 100644 --- a/internal/kickcore/kickcore.go +++ b/internal/kickcore/kickcore.go @@ -168,7 +168,7 @@ func (core *Core) Serve(addr string) error { } var ( - version string = "2.4.9" + version string = "2.4.10" ) func Version() string { return "v" + version }