We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b4d14b commit af6a763Copy full SHA for af6a763
miniirc_matrix.py
@@ -12,7 +12,7 @@
12
import miniirc, requests, traceback # type: ignore
13
14
15
-ver = (0, 0, 5)
+ver = (0, 0, 6)
16
__version__ = '.'.join(map(str, ver))
17
18
@@ -398,7 +398,7 @@ def _update_baseurl(self) -> None:
398
# Non-SSL localhost connections are probably to
399
# https://github.com/matrix-org/pantalaimon which doesn't support
400
# the "v3" URLs yet.
401
- matrix_url = f'http://{hostname}'
+ baseurl = f'http://{hostname}'
402
api_version = 'r0'
403
else:
404
api_version = 'v3'
setup.py
@@ -5,7 +5,7 @@
5
6
setup(
7
name='miniirc_matrix',
8
- version='0.0.5',
+ version='0.0.6',
9
py_modules=['miniirc_matrix'],
10
author='luk3yx',
11
description='A Matrix wrapper for miniirc.',
0 commit comments