diff --git a/NEWS b/NEWS index 2e3bd44bf..1412a955c 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +Version 0.32.7 - Poseidon +------------------------- + * Modernized packaging (#1419, #1420, #1425, #1426, #1427) + * Replaced REST framework in nipapd (#1422) + * Bugfixes in whois-daemon (#1429) + Version 0.32.6 - Poseidon ------------------------- * Fic proxying of traces over TLS in CLI (#1387) diff --git a/nipap-cli/debian/changelog b/nipap-cli/debian/changelog index 3753ffeed..a0ac1d9f0 100644 --- a/nipap-cli/debian/changelog +++ b/nipap-cli/debian/changelog @@ -1,3 +1,11 @@ +nipap-cli (0.32.7-1) stable; urgency=medium + + * Modernized packaging (#1419, #1420, #1425, #1426, #1427) + * Replaced REST framework in nipapd (#1422) + * Bugfixes in whois-daemon (#1429) + + -- Lukas Garberg Wed, 22 Jan 2025 13:45:34 +0100 + nipap-cli (0.32.6-1) stable; urgency=medium * Fic proxying of traces over TLS in CLI (#1387) diff --git a/nipap-cli/nipap_cli/__init__.py b/nipap-cli/nipap_cli/__init__.py index b17a180d7..84e361de8 100644 --- a/nipap-cli/nipap_cli/__init__.py +++ b/nipap-cli/nipap_cli/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.32.6" +__version__ = "0.32.7" __author__ = "Kristian Larsson, Lukas Garberg" __author_email__ = "kll@tele2.net, lukas@spritelink.net" __license__ = "MIT" diff --git a/nipap-www/debian/changelog b/nipap-www/debian/changelog index 650b7d2ff..6ba84ce0b 100644 --- a/nipap-www/debian/changelog +++ b/nipap-www/debian/changelog @@ -1,3 +1,11 @@ +nipap-www (0.32.7-1) stable; urgency=medium + + * Modernized packaging (#1419, #1420, #1425, #1426, #1427) + * Replaced REST framework in nipapd (#1422) + * Bugfixes in whois-daemon (#1429) + + -- Lukas Garberg Wed, 22 Jan 2025 13:45:34 +0100 + nipap-www (0.32.6-1) stable; urgency=medium * Fic proxying of traces over TLS in CLI (#1387) diff --git a/nipap-www/nipapwww/__init__.py b/nipap-www/nipapwww/__init__.py index 8fbb7589c..1a7a9531b 100644 --- a/nipap-www/nipapwww/__init__.py +++ b/nipap-www/nipapwww/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.32.6" +__version__ = "0.32.7" __author__ = "Kristian Larsson, Lukas Garberg" __author_email__ = "kll@tele2.net, lukas@spritelink.net" __license__ = "MIT" diff --git a/nipap/debian/changelog b/nipap/debian/changelog index ebd044120..4fa0bae9c 100644 --- a/nipap/debian/changelog +++ b/nipap/debian/changelog @@ -1,3 +1,11 @@ +nipap (0.32.7-1) stable; urgency=medium + + * Modernized packaging (#1419, #1420, #1425, #1426, #1427) + * Replaced REST framework in nipapd (#1422) + * Bugfixes in whois-daemon (#1429) + + -- Lukas Garberg Wed, 22 Jan 2025 13:45:33 +0100 + nipap (0.32.6-1) stable; urgency=medium * Fic proxying of traces over TLS in CLI (#1387) diff --git a/nipap/nipap/__init__.py b/nipap/nipap/__init__.py index 4ffa32986..655f9fc4b 100644 --- a/nipap/nipap/__init__.py +++ b/nipap/nipap/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.32.6" +__version__ = "0.32.7" __db_version__ = 7 __author__ = "Kristian Larsson, Lukas Garberg" __author_email__ = "kll@tele2.net, lukas@spritelink.net" diff --git a/pynipap/debian/changelog b/pynipap/debian/changelog index b198c441c..ce0dc0d6f 100644 --- a/pynipap/debian/changelog +++ b/pynipap/debian/changelog @@ -1,3 +1,11 @@ +pynipap (0.32.7-1) stable; urgency=medium + + * Modernized packaging (#1419, #1420, #1425, #1426, #1427) + * Replaced REST framework in nipapd (#1422) + * Bugfixes in whois-daemon (#1429) + + -- Lukas Garberg Wed, 22 Jan 2025 13:45:33 +0100 + pynipap (0.32.6-1) stable; urgency=medium * Fic proxying of traces over TLS in CLI (#1387) diff --git a/pynipap/pynipap/__init__.py b/pynipap/pynipap/__init__.py index ed0649f2a..1e8bec547 100644 --- a/pynipap/pynipap/__init__.py +++ b/pynipap/pynipap/__init__.py @@ -1,6 +1,6 @@ from .pynipap import * -__version__ = "0.32.6" +__version__ = "0.32.7" __author__ = "Kristian Larsson, Lukas Garberg" __author_email__= "kll@tele2.net, lukas@spritelink.net" __copyright__ = "Copyright 2011, Kristian Larsson, Lukas Garberg" diff --git a/utilities/news2dch.py b/utilities/news2dch.py index 5d9e4de29..8c3df5e6c 100755 --- a/utilities/news2dch.py +++ b/utilities/news2dch.py @@ -37,7 +37,7 @@ def _parse(self): cur_ver = None cur_line = None for line in self.content: - m = re.match('Version ([0-9]+\.[0-9]+\.[0-9]+)', line) + m = re.match(r'''Version ([0-9]+\.[0-9]+\.[0-9]+)''', line) if m: cur_ver = m.group(1) self.versions.append(cur_ver) @@ -46,10 +46,10 @@ def _parse(self): if self.latest_version is None or StrictVersion(m.group(1)) > StrictVersion(self.latest_version): self.latest_version = m.group(1) elif cur_ver: - m = re.match(' \* (.*)', line) + m = re.match(r''' \* (.*)''', line) if m: cur_entry.append(m.group(1).strip()) - elif not re.match('-------', line) and re.match(' *[^$]+', line): + elif not re.match(r'''-------''', line) and re.match(r''' *[^$]+''', line): cur_entry[-1] += " " + line.strip() @@ -61,7 +61,7 @@ def _parse(self): cur_ver = None cur_line = None for line in self.content: - m = re.match('[^ ]+ \(([0-9]+\.[0-9]+\.[0-9]+)-[0-9]+\) [^ ]+; urgency=[^ ]+', line) + m = re.match(r'''[^ ]+ \(([0-9]+\.[0-9]+\.[0-9]+)-[0-9]+\) [^ ]+; urgency=[^ ]+''', line) if m: cur_ver = m.group(1) self.versions.append(cur_ver) @@ -70,10 +70,10 @@ def _parse(self): if self.latest_version is None or StrictVersion(cur_ver) > StrictVersion(self.latest_version): self.latest_version = m.group(1) elif cur_ver: - m = re.match(' \* (.*)', line) + m = re.match(r''' \* (.*)''', line) if m: cur_entry.append(m.group(1).strip()) - elif not re.match('$', line) and re.match(' *[^$]+', line): + elif not re.match(r'''$''', line) and re.match(r''' *[^$]+''', line): cur_entry[-1] += " " + line.strip() diff --git a/whoisd/debian/changelog b/whoisd/debian/changelog index b16da1f2a..f034a1a33 100644 --- a/whoisd/debian/changelog +++ b/whoisd/debian/changelog @@ -1,3 +1,11 @@ +nipap-whoisd (0.32.7-1) stable; urgency=medium + + * Modernized packaging (#1419, #1420, #1425, #1426, #1427) + * Replaced REST framework in nipapd (#1422) + * Bugfixes in whois-daemon (#1429) + + -- Lukas Garberg Wed, 22 Jan 2025 13:45:34 +0100 + nipap-whoisd (0.32.6-1) stable; urgency=medium * Fic proxying of traces over TLS in CLI (#1387) diff --git a/whoisd/nipap_whoisd.py b/whoisd/nipap_whoisd.py index c31c8aec9..bec5cdbb5 100644 --- a/whoisd/nipap_whoisd.py +++ b/whoisd/nipap_whoisd.py @@ -1,6 +1,6 @@ import os -__version__ = "0.32.6" +__version__ = "0.32.7" __author__ = "Kristian Larsson, Lukas Garberg" __author_email__ = "kll@tele2.net, lukas@spritelink.net" __copyright__ = "Copyright 2011-2014, Kristian Larsson, Lukas Garberg"