diff --git a/ChangeLog b/ChangeLog index 5422999..6fcae92 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +1.2.4 Daniel Lintott + + * Fix error with adding slot0 on a C7200 + * Make cx_Freeze option (thanks to boenrobot) + * Support border width (thanks to noplay) + * Add missing C7200-io-FE (thanks to noplay) + 1.2.3 Daniel Lintott * Ensure the rotation of a shape is defined as a float, diff --git a/gns3converter/__init__.py b/gns3converter/__init__.py index a270d7a..ff9dc7e 100644 --- a/gns3converter/__init__.py +++ b/gns3converter/__init__.py @@ -12,4 +12,4 @@ # # You should have received a copy of the GNU General Public License # along with this program. If not, see . -__version__ = '1.2.4.dev1' +__version__ = '1.2.4' diff --git a/tests/test_version.py b/tests/test_version.py index 989501b..de9837e 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -4,7 +4,7 @@ class TestVersion(unittest.TestCase): def test_version(self): - self.assertEqual('1.2.4.dev1', gns3converter.__version__) + self.assertEqual('1.2.4', gns3converter.__version__) if __name__ == '__main__': unittest.main()