diff --git a/CHANGES.rst b/CHANGES.rst index 0c1157030..2c3f073e9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,23 @@ Change log ========== +Version 1.0.2 [2022-12-02] +-------------------------- + +Bugfixes +~~~~~~~~ + +- Fixed parsing of wifi interface without ifname +- Fixed parsing of wifi with encryption set to none +- Fixed parsing wifi interface boolean typecasting +- Fixed a backward compatibility issue with bridges not being prefixed with "br-" on OpenWrt >= 21 + Version 1.0.1 [2022-05-11] -------------------------- +Bugfixes +~~~~~~~~ + - Fixed modem-manager configuration for OpenWrt 21 - Fixed WiFi interface configuration for OpenWrt 21 diff --git a/netjsonconfig/version.py b/netjsonconfig/version.py index 1fba5019a..0f3adf1f1 100644 --- a/netjsonconfig/version.py +++ b/netjsonconfig/version.py @@ -1,4 +1,4 @@ -VERSION = (1, 0, 1, 'final') +VERSION = (1, 0, 2, 'final') __version__ = VERSION