aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md8
-rw-r--r--src/IRCBot.py2
2 files changed, 9 insertions, 1 deletions
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 <alias>`
+- `!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"