summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimeon Simeonov2022-09-10 18:16:59 +0200
committerSimeon Simeonov2022-09-10 18:16:59 +0200
commit884e8a3562801aac86e31950ab1974513161d48b (patch)
treed9eea8fe85e9d8819b3a54cbda1d75b33185555e
parent003cd12be734b05d7281579d3d377f79425531fa (diff)
Release v4.3v4.3
-rw-r--r--Changelog4
-rw-r--r--README.md2
-rwxr-xr-xbeinc_generic_client.py4
-rwxr-xr-xbeinc_pull.py4
-rwxr-xr-xbeinc_server.py4
-rw-r--r--beinc_weechat.py4
6 files changed, 13 insertions, 9 deletions
diff --git a/Changelog b/Changelog
index 4fbbd0e..6692d08 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,7 @@
1v4.3:
2 - remove obsolete SSL/TLS code
3 - use black alike coding style
4
1v4.1: 5v4.1:
2 - re-raise exceptions properly 6 - re-raise exceptions properly
3 - fix error when using Python 3.9 due to removed 'encoding' parameter 7 - fix error when using Python 3.9 due to removed 'encoding' parameter
diff --git a/README.md b/README.md
index 6a42ff6..1994c15 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
1Copyright (C) 2014-2020 - Simeon Simeonov 1Copyright (C) 2014-2022 - Simeon Simeonov
2See the end of the file for license conditions. 2See the end of the file for license conditions.
3 3
4 4
diff --git a/beinc_generic_client.py b/beinc_generic_client.py
index af1e74f..476287e 100755
--- a/beinc_generic_client.py
+++ b/beinc_generic_client.py
@@ -1,7 +1,7 @@
1#!/usr/bin/env python 1#!/usr/bin/env python
2# -*- coding: utf-8 -*- 2# -*- coding: utf-8 -*-
3 3
4# Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.0 4# Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.3
5# Copyright (C) 2013-2022 Simeon Simeonov 5# Copyright (C) 2013-2022 Simeon Simeonov
6 6
7# This program is free software: you can redistribute it and/or modify 7# This program is free software: you can redistribute it and/or modify
@@ -30,7 +30,7 @@ import urllib.parse
30import urllib.request 30import urllib.request
31 31
32__author__ = 'Simeon Simeonov' 32__author__ = 'Simeon Simeonov'
33__version__ = '4.2' 33__version__ = '4.3'
34__license__ = 'GPL3' 34__license__ = 'GPL3'
35 35
36 36
diff --git a/beinc_pull.py b/beinc_pull.py
index 67b6e63..118a08a 100755
--- a/beinc_pull.py
+++ b/beinc_pull.py
@@ -1,7 +1,7 @@
1#!/usr/bin/env python 1#!/usr/bin/env python
2# -*- coding: utf-8 -*- 2# -*- coding: utf-8 -*-
3 3
4# Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.0 4# Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.3
5# Copyright (C) 2013-2022 Simeon Simeonov 5# Copyright (C) 2013-2022 Simeon Simeonov
6 6
7# This program is free software: you can redistribute it and/or modify 7# This program is free software: you can redistribute it and/or modify
@@ -38,7 +38,7 @@ except ImportError:
38 38
39 39
40__author__ = 'Simeon Simeonov' 40__author__ = 'Simeon Simeonov'
41__version__ = '4.2' 41__version__ = '4.3'
42__license__ = 'GPL3' 42__license__ = 'GPL3'
43 43
44 44
diff --git a/beinc_server.py b/beinc_server.py
index 77aa35e..a105801 100755
--- a/beinc_server.py
+++ b/beinc_server.py
@@ -1,7 +1,7 @@
1#!/usr/bin/env python 1#!/usr/bin/env python
2# -*- coding: utf-8 -*- 2# -*- coding: utf-8 -*-
3 3
4# Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.0 4# Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.3
5# Copyright (C) 2013-2022 Simeon Simeonov 5# Copyright (C) 2013-2022 Simeon Simeonov
6 6
7# This program is free software: you can redistribute it and/or modify 7# This program is free software: you can redistribute it and/or modify
@@ -38,7 +38,7 @@ except ImportError:
38 38
39 39
40__author__ = 'Simeon Simeonov' 40__author__ = 'Simeon Simeonov'
41__version__ = '4.2' 41__version__ = '4.3'
42__license__ = 'GPL3' 42__license__ = 'GPL3'
43 43
44 44
diff --git a/beinc_weechat.py b/beinc_weechat.py
index 2288b74..b3550d8 100644
--- a/beinc_weechat.py
+++ b/beinc_weechat.py
@@ -1,6 +1,6 @@
1# -*- coding: utf-8 -*- 1# -*- coding: utf-8 -*-
2 2
3# Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.0 3# Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.3
4# Copyright (C) 2013-2022 Simeon Simeonov 4# Copyright (C) 2013-2022 Simeon Simeonov
5 5
6# This program is free software: you can redistribute it and/or modify 6# This program is free software: you can redistribute it and/or modify
@@ -28,7 +28,7 @@ import urllib.request
28import weechat 28import weechat
29 29
30__author__ = 'Simeon Simeonov' 30__author__ = 'Simeon Simeonov'
31__version__ = '4.2' 31__version__ = '4.3'
32__license__ = 'GPL3' 32__license__ = 'GPL3'
33 33
34 34