diff --git a/ChangeLog b/ChangeLog index 52f0ea8..87e42a5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1.2.0 Daniel Lintott + + * Fix converting shapes that don't have fill_color specified, make them + transparent (Fixes #18) + * Copy instructions to new topology if they are present + 1.1.1 Daniel Lintott * Fix error numbering of multiple serial ports (Fixes #15) diff --git a/docs/conf.py b/docs/conf.py index dd0baa4..805dd86 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,7 +57,7 @@ # The short X.Y version. version = '1.1' # The full version, including alpha/beta/rc tags. -release = '1.2.0-dev1' +release = '1.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/gns3converter/__init__.py b/gns3converter/__init__.py index 285bdf8..09ae1cc 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.0-dev1' +__version__ = '1.2.0' diff --git a/tests/test_version.py b/tests/test_version.py index 674d734..5ea4587 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.0-dev1', gns3converter.__version__) + self.assertEqual('1.2.0', gns3converter.__version__) if __name__ == '__main__': unittest.main()