diff --git a/ChangeLog b/ChangeLog index be46623..091df80 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1.2.2 Daniel Lintott + + * Ensure the rotation of a shape is defined as a float, + rather than string (Fixes #23) + 1.2.2 Daniel Lintott * Correct the path used for multi-host VPCS configs diff --git a/docs/conf.py b/docs/conf.py index 41812a3..17195af 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,7 +57,7 @@ # The short X.Y version. version = '1.2' # The full version, including alpha/beta/rc tags. -release = '1.2.2' +release = '1.2.3' # 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 0d9f0bd..abab3be 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.2' +__version__ = '1.2.3' diff --git a/tests/test_version.py b/tests/test_version.py index 2610522..646021d 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.2', gns3converter.__version__) + self.assertEqual('1.2.3', gns3converter.__version__) if __name__ == '__main__': unittest.main()