]> git.proxmox.com Git - mirror_ifupdown2.git/commitdiff
debian: changelog: new entry for version 1.2.2
authorJulien Fortin <julien@cumulusnetworks.com>
Fri, 14 Dec 2018 01:09:46 +0000 (17:09 -0800)
committerJulien Fortin <julien@cumulusnetworks.com>
Fri, 14 Dec 2018 01:09:46 +0000 (17:09 -0800)
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 <julien@cumulusnetworks.com>  Thu, 13 Dec 2018 23:42:42 -0800

Signed-off-by: Julien Fortin <julien@cumulusnetworks.com>
debian/changelog
ifupdown2/__init__.py
setup.py

index a191f72a2f9069456a15df3f9dfce54308d94b04..21fb917370e74c1b8c389d7b2b46065ee29f526a 100644 (file)
@@ -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 <julien@cumulusnetworks.com>  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
index c96119eb264a3e150bdb96b86fd2b5cacd2ae9d4..b72a681227717c8af4bde7c6f26491afb555bf48 100644 (file)
@@ -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
 #
index 0c2222bfc55a74f76d438ffbc0a13ec08cb8bf4a..200f7e2ee0f9c308a231c9632d8e8b9959e32848 100755 (executable)
--- 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,