Skip to content

Commit

Permalink
Release v0.32.5
Browse files Browse the repository at this point in the history
  • Loading branch information
garberg committed Jun 14, 2024
1 parent 7037dcb commit f43c775
Show file tree
Hide file tree
Showing 12 changed files with 51 additions and 7 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.5 - Poseidon
-------------------------
* Fixed trace proxy (#1385)
* Fixed handling of CA certs in Dockerfiles (#1384)
* Misc fixes to build system etc (#1383)

Version 0.32.4 - Poseidon
-------------------------
* Updated Docker packaging (#1374, #1376)
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.5-1) stable; urgency=medium

* Fixed trace proxy (#1385)
* Fixed handling of CA certs in Dockerfiles (#1384)
* Misc fixes to build system etc (#1383)

-- Lukas Garberg <[email protected]> Sun, 26 May 2024 23:02:40 +0200

nipap-cli (0.32.4-1) stable; urgency=medium

* Updated Docker packaging (#1374, #1376)
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.4"
__version__ = "0.32.5"
__author__ = "Kristian Larsson, Lukas Garberg"
__author_email__ = "[email protected], [email protected]"
__license__ = "MIT"
Expand Down
2 changes: 0 additions & 2 deletions nipap-www/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,5 @@ VER := $(shell head -n1 ../NEWS | awk '{print $$2}')
bumpversion:
# replace version number in nipapwww/__init__.py
sed -i 's/\(__version__\s*= \)"[^"]\+"/\1"$(VER)"/' nipapwww/__init__.py
# replace version number in nipap_www.egg-info/PKG-INFO
sed -i 's/^Version:.*/Version: $(VER)/' nipap_www.egg-info/PKG-INFO
# update debian/changelog
../utilities/news2dch.py ../NEWS debian/changelog
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.5-1) stable; urgency=medium

* Fixed trace proxy (#1385)
* Fixed handling of CA certs in Dockerfiles (#1384)
* Misc fixes to build system etc (#1383)

-- Lukas Garberg <[email protected]> Sun, 26 May 2024 23:07:29 +0200

nipap-www (0.32.4-1) stable; urgency=medium

* Updated Docker packaging (#1374, #1376)
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.4"
__version__ = "0.32.5"
__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.5-1) stable; urgency=medium

* Fixed trace proxy (#1385)
* Fixed handling of CA certs in Dockerfiles (#1384)
* Misc fixes to build system etc (#1383)

-- Lukas Garberg <[email protected]> Sun, 26 May 2024 23:02:39 +0200

nipap (0.32.4-1) stable; urgency=medium

* Updated Docker packaging (#1374, #1376)
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.4"
__version__ = "0.32.5"
__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.5-1) stable; urgency=medium

* Fixed trace proxy (#1385)
* Fixed handling of CA certs in Dockerfiles (#1384)
* Misc fixes to build system etc (#1383)

-- Lukas Garberg <[email protected]> Sun, 26 May 2024 23:02:40 +0200

pynipap (0.32.4-1) stable; urgency=medium

* Updated Docker packaging (#1374, #1376)
Expand Down
2 changes: 1 addition & 1 deletion pynipap/pynipap.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@

from tracing import create_span

__version__ = "0.32.4"
__version__ = "0.32.5"
__author__ = "Kristian Larsson, Lukas Garberg"
__author_email__= "[email protected], [email protected]"
__copyright__ = "Copyright 2011, Kristian Larsson, Lukas Garberg"
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.5-1) stable; urgency=medium

* Fixed trace proxy (#1385)
* Fixed handling of CA certs in Dockerfiles (#1384)
* Misc fixes to build system etc (#1383)

-- Lukas Garberg <[email protected]> Sun, 26 May 2024 23:02:40 +0200

nipap-whoisd (0.32.4-1) stable; urgency=medium

* Updated Docker packaging (#1374, #1376)
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.4"
__version__ = "0.32.5"
__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 f43c775

Please sign in to comment.