diff --git a/CHANGELOG.md b/CHANGELOG.md index a04bc6c003041567616eb532468cb630c9fdd20a..8b2c4d0dd098c6c186a7379250bed832b04fdc29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] ## +## [8.0.0] - 2024-10-09 ## ### Added ### @@ -13,15 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed ### -### Deprecated ### - -### Removed ### - -### Fixed ### - -- `OFFSET` is a reserved keyword in MariaDB 10.6, so a parameter name had to be changed. - -### Security ### +- `OFFSET` is a reserved keyword in MariaDB 10.6, so the former + `OFFSET` parameter name in the `get_head_relative` function was + changed to HeadOffset. See + [`update_dumps/README.md`](update_dumps/README.md) for information + on how to update old SQL dumps to be compatible with this renaming + and MariaDB >= 10.6. ## [7.0.2] - 2023-12-12 ## (Timm Fitschen) diff --git a/doc/conf.py b/doc/conf.py index b91de6f657f719e49fee9777062c9d3504e070cb..d7968a2638e7131c9eba66fa69931e345f05b70e 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -26,9 +26,9 @@ copyright = '2021 - 2024, IndiScale GmbH' author = 'Daniel Hornung' # The short X.Y version -version = '7.0.2' +version = '8.0.0' # The full version, including alpha/beta/rc tags -release = '7.0.2' +release = '8.0.0' # -- General configuration ---------------------------------------------------