From 3b69ce6e62e801a1fb4f6ce4e5de9a1ead1350fe Mon Sep 17 00:00:00 2001 From: Julien Fortin Date: Thu, 13 Dec 2018 17:09:46 -0800 Subject: [PATCH] debian: changelog: new entry for version 1.2.2 ifupdown2 (1.2.2) unstable; urgency=medium * Support for new iproute2 format (bridge vlan show) * Pypi install: local addons modules should be loaded first * Fix: link-down yes on vrf slaves * Fix: nlmanager: use strerror to format kernel error * Add: new checks for existing device with vxlan attributes * Ethtool: FEC: translate None and NotSupported values to link-fec off -- Julien Fortin Thu, 13 Dec 2018 23:42:42 -0800 Signed-off-by: Julien Fortin --- debian/changelog | 11 +++++++++++ ifupdown2/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index a191f72..21fb917 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +ifupdown2 (1.2.2) unstable; urgency=medium + + * Support for new iproute2 format (bridge vlan show) + * Pypi install: local addons modules should be loaded first + * Fix: link-down yes on vrf slaves + * Fix: nlmanager: use strerror to format kernel error + * Add: new checks for existing device with vxlan attributes + * Ethtool: FEC: translate None and NotSupported values to link-fec off + + -- Julien Fortin Thu, 13 Dec 2018 23:42:42 -0800 + ifupdown2 (1.2.1) unstable; urgency=medium * Fix #54: address module new l3_intf_default_gateway_set_onlink policy diff --git a/ifupdown2/__init__.py b/ifupdown2/__init__.py index c96119e..b72a681 100644 --- a/ifupdown2/__init__.py +++ b/ifupdown2/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -__version__ = '1.2.1' +__version__ = '1.2.2' # Copyright (C) 2014,2015,2016,2017,2018 Cumulus Networks, Inc. All rights reserved # diff --git a/setup.py b/setup.py index 0c2222b..200f7e2 100755 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ setup( name='ifupdown2', packages=find_packages(), url='https://github.com/CumulusNetworks/ifupdown2', - version='1.2.1', + version='1.2.2', data_files=DATA_FILES, setup_requires=['setuptools'], scripts=SCRIPTS,