From d0e777d4936bc8df995508df0e715579520842ca Mon Sep 17 00:00:00 2001 From: JR Date: Tue, 18 Jul 2023 23:03:19 +0200 Subject: [PATCH] v3.11.0 This release further lowers memory required for compilation, mostly by moving some static code out of templates into non-templated free functions. For the sake of consistency, plural plugin names have been string-replaced into their singular form. The `Oneliners` plugin is now the `Oneliner` plugin, `Notes`/`Note`, `Quotes`/`Quote`, `Webtitles`/`Webtitle` and `ChanQueries`/`ChanQuery`. This should be completely behind-the-scenes and configuration files should not be broken by this change. * Stopwatches now persist across connections (and across executions of the program) * Miscellaneous cosmetic cleanup across the whole project --- README.md | 2 +- source/kameloso/semver.d | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 25e52c2600..2d4f16a030 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# kameloso [![Linux/macOS/Windows](https://img.shields.io/github/actions/workflow/status/zorael/kameloso/d.yml?branch=master)](https://github.com/zorael/kameloso/actions?query=workflow%3AD) [![Linux](https://img.shields.io/circleci/project/github/zorael/kameloso/master.svg?logo=circleci&style=flat&maxAge=3600)](https://circleci.com/gh/zorael/kameloso) [![Windows](https://img.shields.io/appveyor/ci/zorael/kameloso/master.svg?logo=appveyor&style=flat&maxAge=3600)](https://ci.appveyor.com/project/zorael/kameloso) [![Commits since last release](https://img.shields.io/github/commits-since/zorael/kameloso/v3.10.0.svg?logo=github&style=flat&maxAge=3600)](https://github.com/zorael/kameloso/compare/v3.10.0...master) +# kameloso [![Linux/macOS/Windows](https://img.shields.io/github/actions/workflow/status/zorael/kameloso/d.yml?branch=master)](https://github.com/zorael/kameloso/actions?query=workflow%3AD) [![Linux](https://img.shields.io/circleci/project/github/zorael/kameloso/master.svg?logo=circleci&style=flat&maxAge=3600)](https://circleci.com/gh/zorael/kameloso) [![Windows](https://img.shields.io/appveyor/ci/zorael/kameloso/master.svg?logo=appveyor&style=flat&maxAge=3600)](https://ci.appveyor.com/project/zorael/kameloso) [![Commits since last release](https://img.shields.io/github/commits-since/zorael/kameloso/v3.11.0.svg?logo=github&style=flat&maxAge=3600)](https://github.com/zorael/kameloso/compare/v3.11.0...master) **kameloso** is an IRC bot with [Twitch support](#twitch). It is text-based and runs in your terminal or console. diff --git a/source/kameloso/semver.d b/source/kameloso/semver.d index b7e60122c3..9fbda19cec 100644 --- a/source/kameloso/semver.d +++ b/source/kameloso/semver.d @@ -26,7 +26,7 @@ enum KamelosoSemVer /++ SemVer minor version of the program. +/ - minorVersion = 10, + minorVersion = 11, /++ SemVer patch version of the program.