aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2019-08-30 19:10:17 +0100
committerGravatar jesopo2019-08-30 19:10:17 +0100
commit6a068777d6776762ebda6a25a206841e921d1c06 (patch)
treecadfd7597ad16c96661b0e3da754cd3078e67fce
parentswitch to using signal.setitimer so we can restore previous timer (diff)
signature
v1.11.1 release
-rw-r--r--CHANGELOG.md15
-rw-r--r--src/IRCBot.py2
2 files changed, 16 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 433f5c6f..80bcda11 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,18 @@
+# 2019-08-30 - BitBot v1.11.1
+
+Added:
+- `utils.IntRangeSetting`
+- `realname` was missing from `!editserver`
+
+Changed:
+- Added `"- "` to start of formatted kick lines
+- Use `"+0000"` instead of `"Z"` for UTC timezone
+
+Fixed:
+- Put a deadline on sed matches to prevent DoS
+- Duplicate `def op` in `channel_op.py` (due to copypaste)
+- `git-prevent-highlight` was failing to unhighlight organisations
+
# 2019-08-15 - BitBot v1.11.0
Added:
diff --git a/src/IRCBot.py b/src/IRCBot.py
index 1c8c52d7..52da3b9d 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"
+VERSION = "v1.11.1"
SOURCE = "https://git.io/bitbot"
URL = "https://bitbot.dev"