Skip to content

Commit

Permalink
Merge pull request #1430 from garberg/bump_to_v0.32.7
Browse files Browse the repository at this point in the history
Bump version to 0.32.7
  • Loading branch information
garberg authored Jan 22, 2025
2 parents a0dfbf7 + 8a9c7de commit 5ad0ec6
Show file tree
Hide file tree
Showing 12 changed files with 57 additions and 11 deletions.
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
8 changes: 8 additions & 0 deletions nipap-cli/debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> 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)
Expand Down
2 changes: 1 addition & 1 deletion nipap-cli/nipap_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.32.6"
__version__ = "0.32.7"
__author__ = "Kristian Larsson, Lukas Garberg"
__author_email__ = "[email protected], [email protected]"
__license__ = "MIT"
Expand Down
8 changes: 8 additions & 0 deletions nipap-www/debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> 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)
Expand Down
2 changes: 1 addition & 1 deletion nipap-www/nipapwww/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.32.6"
__version__ = "0.32.7"
__author__ = "Kristian Larsson, Lukas Garberg"
__author_email__ = "[email protected], [email protected]"
__license__ = "MIT"
Expand Down
8 changes: 8 additions & 0 deletions nipap/debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> 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)
Expand Down
2 changes: 1 addition & 1 deletion nipap/nipap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.32.6"
__version__ = "0.32.7"
__db_version__ = 7
__author__ = "Kristian Larsson, Lukas Garberg"
__author_email__ = "[email protected], [email protected]"
Expand Down
8 changes: 8 additions & 0 deletions pynipap/debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> 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)
Expand Down
2 changes: 1 addition & 1 deletion pynipap/pynipap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .pynipap import *

__version__ = "0.32.6"
__version__ = "0.32.7"
__author__ = "Kristian Larsson, Lukas Garberg"
__author_email__= "[email protected], [email protected]"
__copyright__ = "Copyright 2011, Kristian Larsson, Lukas Garberg"
Expand Down
12 changes: 6 additions & 6 deletions utilities/news2dch.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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()


Expand All @@ -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)
Expand All @@ -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()


Expand Down
8 changes: 8 additions & 0 deletions whoisd/debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> 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)
Expand Down
2 changes: 1 addition & 1 deletion whoisd/nipap_whoisd.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

__version__ = "0.32.6"
__version__ = "0.32.7"
__author__ = "Kristian Larsson, Lukas Garberg"
__author_email__ = "[email protected], [email protected]"
__copyright__ = "Copyright 2011-2014, Kristian Larsson, Lukas Garberg"
Expand Down

0 comments on commit 5ad0ec6

Please sign in to comment.