From 34e2059d29f3f04610c127fdb5cd161574a3c65b Mon Sep 17 00:00:00 2001 From: Lukas Garberg Date: Wed, 25 Oct 2023 16:45:14 +0200 Subject: [PATCH] Version 0.32.1 --- NEWS | 4 ++++ nipap-cli/debian/changelog | 6 ++++++ nipap-cli/nipap_cli/__init__.py | 2 +- nipap-www/debian/changelog | 6 ++++++ nipap-www/nipap_www.egg-info/PKG-INFO | 2 +- nipap-www/nipap_www.egg-info/requires.txt | 2 +- nipap-www/nipapwww/__init__.py | 2 +- nipap/debian/changelog | 6 ++++++ nipap/nipap/__init__.py | 2 +- pynipap/debian/changelog | 6 ++++++ pynipap/pynipap.py | 2 +- whoisd/debian/changelog | 6 ++++++ whoisd/nipap_whoisd.py | 2 +- 13 files changed, 41 insertions(+), 7 deletions(-) diff --git a/NEWS b/NEWS index e67a789d1..d2caeb247 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +Version 0.32.1 - Poseidon +------------------------- + * Fix bug where data fetched from LDAP caused a crash (#1347) + Version 0.32.0 - Poseidon ------------------------- * nipapd, nipap-www and whoisd running on Python 3 (#1316) diff --git a/nipap-cli/debian/changelog b/nipap-cli/debian/changelog index adcf5ba9c..3f42d6e52 100644 --- a/nipap-cli/debian/changelog +++ b/nipap-cli/debian/changelog @@ -1,3 +1,9 @@ +nipap-cli (0.32.1-1) stable; urgency=medium + + * Fix bug where data fetched from LDAP caused a crash (#1347) + + -- Lukas Garberg Wed, 25 Oct 2023 16:44:40 +0200 + nipap-cli (0.32.0-1) stable; urgency=medium * nipapd, nipap-www and whoisd running on Python 3 (#1316) diff --git a/nipap-cli/nipap_cli/__init__.py b/nipap-cli/nipap_cli/__init__.py index 01f82e3d4..e6f6de299 100644 --- a/nipap-cli/nipap_cli/__init__.py +++ b/nipap-cli/nipap_cli/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.32.0" +__version__ = "0.32.1" __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 c08d40159..f941e2038 100644 --- a/nipap-www/debian/changelog +++ b/nipap-www/debian/changelog @@ -1,3 +1,9 @@ +nipap-www (0.32.1-1) stable; urgency=medium + + * Fix bug where data fetched from LDAP caused a crash (#1347) + + -- Lukas Garberg Wed, 25 Oct 2023 16:44:40 +0200 + nipap-www (0.32.0-1) stable; urgency=medium * nipapd, nipap-www and whoisd running on Python 3 (#1316) diff --git a/nipap-www/nipap_www.egg-info/PKG-INFO b/nipap-www/nipap_www.egg-info/PKG-INFO index 0567d8110..6e1a862b9 100644 --- a/nipap-www/nipap_www.egg-info/PKG-INFO +++ b/nipap-www/nipap_www.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: nipap-www -Version: 0.32.0 +Version: 0.32.1 Summary: web frontend for NIPAP Home-page: http://SpriteLink.github.io/NIPAP Author: Kristian Larsson, Lukas Garberg diff --git a/nipap-www/nipap_www.egg-info/requires.txt b/nipap-www/nipap_www.egg-info/requires.txt index e4e7cd1c6..560bedd94 100644 --- a/nipap-www/nipap_www.egg-info/requires.txt +++ b/nipap-www/nipap_www.egg-info/requires.txt @@ -1,3 +1,3 @@ Flask -pynipap nipap +pynipap diff --git a/nipap-www/nipapwww/__init__.py b/nipap-www/nipapwww/__init__.py index 3d23d87ac..6675ac25d 100644 --- a/nipap-www/nipapwww/__init__.py +++ b/nipap-www/nipapwww/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.32.0" +__version__ = "0.32.1" __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 17cab1d41..3ed37c8e4 100644 --- a/nipap/debian/changelog +++ b/nipap/debian/changelog @@ -1,3 +1,9 @@ +nipap (0.32.1-1) stable; urgency=medium + + * Fix bug where data fetched from LDAP caused a crash (#1347) + + -- Lukas Garberg Wed, 25 Oct 2023 16:44:39 +0200 + nipap (0.32.0-1) stable; urgency=medium * nipapd, nipap-www and whoisd running on Python 3 (#1316) diff --git a/nipap/nipap/__init__.py b/nipap/nipap/__init__.py index 4bc370cf9..f79da6b1d 100644 --- a/nipap/nipap/__init__.py +++ b/nipap/nipap/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.32.0" +__version__ = "0.32.1" __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 d79db4c43..2ae35c351 100644 --- a/pynipap/debian/changelog +++ b/pynipap/debian/changelog @@ -1,3 +1,9 @@ +pynipap (0.32.1-1) stable; urgency=medium + + * Fix bug where data fetched from LDAP caused a crash (#1347) + + -- Lukas Garberg Wed, 25 Oct 2023 16:44:39 +0200 + pynipap (0.32.0-1) stable; urgency=medium * nipapd, nipap-www and whoisd running on Python 3 (#1316) diff --git a/pynipap/pynipap.py b/pynipap/pynipap.py index 78a33f6b8..d45c8870f 100644 --- a/pynipap/pynipap.py +++ b/pynipap/pynipap.py @@ -212,7 +212,7 @@ else: import xmlrpc.client as xmlrpclib -__version__ = "0.32.0" +__version__ = "0.32.1" __author__ = "Kristian Larsson, Lukas Garberg" __author_email__= "kll@tele2.net, lukas@spritelink.net" __copyright__ = "Copyright 2011, Kristian Larsson, Lukas Garberg" diff --git a/whoisd/debian/changelog b/whoisd/debian/changelog index 4b1583ffd..81d0bd6fe 100644 --- a/whoisd/debian/changelog +++ b/whoisd/debian/changelog @@ -1,3 +1,9 @@ +nipap-whoisd (0.32.1-1) stable; urgency=medium + + * Fix bug where data fetched from LDAP caused a crash (#1347) + + -- Lukas Garberg Wed, 25 Oct 2023 16:44:40 +0200 + nipap-whoisd (0.32.0-1) stable; urgency=medium * nipapd, nipap-www and whoisd running on Python 3 (#1316) diff --git a/whoisd/nipap_whoisd.py b/whoisd/nipap_whoisd.py index 58f529922..fafdbc974 100644 --- a/whoisd/nipap_whoisd.py +++ b/whoisd/nipap_whoisd.py @@ -1,6 +1,6 @@ import os -__version__ = "0.32.0" +__version__ = "0.32.1" __author__ = "Kristian Larsson, Lukas Garberg" __author_email__ = "kll@tele2.net, lukas@spritelink.net" __copyright__ = "Copyright 2011-2014, Kristian Larsson, Lukas Garberg"