From 054e7685b03132f0a430e09710a671eb39cb13e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20R=C3=B6nnblom?= Date: Mon, 8 Aug 2022 15:21:06 +0200 Subject: [PATCH] Update meta data for 1.0.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update versioning information in preparation of the 1.0.3 release. Signed-off-by: Mattias Rönnblom --- paf/server.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/paf/server.py b/paf/server.py index f13ba96..fae21a6 100644 --- a/paf/server.py +++ b/paf/server.py @@ -17,7 +17,7 @@ MAJOR_VERSION = 1 MINOR_VERSION = 0 -PATCH_VERSION = 2 +PATCH_VERSION = 3 VERSION = "%d.%d.%d" % (MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION) diff --git a/setup.py b/setup.py index a696fc7..3c01a8f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setuptools.setup( name="paf", - version="1.0.2", + version="1.0.3", author="Mattias Rönnblom", author_email="mattias.ronnblom@ericsson.com", description="The Pathfinder Service Discovery Server",