From aa42d17ee6baebb687367e3fd88d606d11862020 Mon Sep 17 00:00:00 2001 From: Nesaku <78386413+nesaku@users.noreply.github.com> Date: Sun, 3 Nov 2024 01:52:49 -0500 Subject: [PATCH] update version number --- CHANGELOG.md | 5 ++++- components/global/Footer.js | 4 ++-- components/global/Header.js | 5 +---- components/searchpage/ListsResultData.js | 1 - components/seriespage/SeriesList.js | 2 +- package-lock.json | 4 ++-- package.json | 2 +- public/robots.txt | 1 + 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ee6c3d..aff7457 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,17 +5,20 @@ 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.24.1] - Oct 30, 2024 +## [2.25.0] - Nov 3, 2024 ### Changed - Set a maximum width for the displayed Goodreads URL - Use a reusable `` component instead of repeating code - Update the instances list in the README and instances.json +- Allow the /search path in robots.txt ### Fixed - Fix similar books section still being shown when there are no books +- Fix book cover images not showing in the series list +- Fix the aria-hidden attribute added to the quotes header link ## [2.24.0] - Sep 28, 2024 diff --git a/components/global/Footer.js b/components/global/Footer.js index 233d7fa..800554a 100644 --- a/components/global/Footer.js +++ b/components/global/Footer.js @@ -2,8 +2,8 @@ import React, { useEffect } from "react"; import Link from "next/link"; const Footer = () => { - const version = "v2.24.0"; - const versionSlug = "2240---sep-28-2024"; + const version = "v2.25.0"; + const versionSlug = "2250---nov-3-2024"; useEffect(() => { if (typeof sessionStorage !== "undefined") { diff --git a/components/global/Header.js b/components/global/Header.js index a755215..883c515 100644 --- a/components/global/Header.js +++ b/components/global/Header.js @@ -17,10 +17,7 @@ const Header = () => {