From 525cb4a4950acf758de58d62cdf3a9dbf97e51dc Mon Sep 17 00:00:00 2001 From: Marko Leinikka Date: Tue, 23 Jan 2024 02:11:42 +0900 Subject: [PATCH] chore: bump the version --- docs/CHANGELOG.md | 6 ++++++ pkg/api/api.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 1274890..d5d0ec3 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes of this project will be documented in this file. > The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres > to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.7.4] - 2024-01-23 + +### Fixed + +- Server crash (nil pointer dereference) when trying to login anonymously without cookie age + ## [0.7.3] - 2024-01-22 ### Added diff --git a/pkg/api/api.go b/pkg/api/api.go index 67e45b2..3786beb 100644 --- a/pkg/api/api.go +++ b/pkg/api/api.go @@ -64,7 +64,7 @@ func returnInfo(w http.ResponseWriter, r *http.Request) { Registrations bool }{ APIVersion: 1, - ServerVersion: "0.7.3", + ServerVersion: "0.7.4", Visibility: config.Options.Visibility, Registrations: config.Options.Registrations, }, r.URL.Path)