From 195cb66e2664ed2d9ee1c98e557d1044f7890416 Mon Sep 17 00:00:00 2001 From: jesopo Date: Wed, 14 Aug 2019 15:17:01 +0100 Subject: [PATCH] Update CHANGELOG.md, bump version to v1.11.0-rc3 --- CHANGELOG.md | 8 ++++++++ src/IRCBot.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49288d47..046877e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,9 @@ Added: - `utils.http.request_many()` - `./start.py --startup-disconnects` - `./start.py --remove-server ` +- `!remindme` as an alias of `!in` (`in.py`) +- `!source` and `!version` (`info.py`) +- Show TTL for DNS records (`ip_addresses.py`) Changed: - Move `_check()` call to event loop func @@ -50,6 +53,11 @@ Changed: - Better and more exhaustive channel move tracking - Don't silently truncate `ParsedLine` at newline - `@utils.hook`/`@utils.export` now use a single object that handles parsing +- `!ban`/`!kickban`/`!mute` duration syntax changed (`channel_op.py`) +- Highlight spam protection logic moved to own module (`highlight_spam.py`) +- `IRCBuffer.find()` returns the matched string +- Positive and negative karma throttled seperately (`karma.py`) +- REST API now listens in IPv6 (`rest_api.py`) Fixed: - Catch and rethrow not-found definitions in `define.py` diff --git a/src/IRCBot.py b/src/IRCBot.py index 75051dfa..f6b4826d 100644 --- a/src/IRCBot.py +++ b/src/IRCBot.py @@ -3,7 +3,7 @@ import typing, uuid from src import EventManager, Exports, IRCServer, Logging, ModuleManager from src import Socket, utils -VERSION = "v1.11.0-rc2" +VERSION = "v1.11.0-rc3" SOURCE = "https://git.io/bitbot" URL = "https://bitbot.dev"