From d12f3140bab6e0021c05be0a3a9d8b7496d7c21a Mon Sep 17 00:00:00 2001 From: Daniel Lintott Date: Mon, 3 Nov 2014 11:57:44 +0000 Subject: [PATCH] Update changelog and release version 1.0 --- ChangeLog | 8 ++++++++ docs/conf.py | 4 ++-- gns3converter/__init__.py | 2 +- setup.py | 2 +- tests/test_version.py | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index e91f196..c39346d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +1.0.0 Daniel Lintott + + * Stable release version 1.0! + * Split out parts of the save function to improve readability + * Rework the passing of arguments to simplify integration into GNS3 + * Define ellipse and rectangle in shapes dict during init + * Major improvements to the test-suite (still lots to be done) + 0.5.0 Daniel Lintott * Correctly handle a cloud being in a topology but not connected diff --git a/docs/conf.py b/docs/conf.py index 4d20936..b18df6a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '0.5' +version = '1.0' # The full version, including alpha/beta/rc tags. -release = '0.5.1.dev1' +release = '1.0.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 d8ee70f..38843e5 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__ = '0.5.1.dev1' +__version__ = '1.0.0' diff --git a/setup.py b/setup.py index 4bc1a69..f0f716b 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ entry_points={'console_scripts': ['gns3-converter = gns3converter.main:main']}, platforms='any', - classifiers=['Development Status :: 4 - Beta', + classifiers=['Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Education', 'Intended Audience :: Information Technology', diff --git a/tests/test_version.py b/tests/test_version.py index cfe1eae..a1e4fde 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('0.5.1.dev1', gns3converter.__version__) + self.assertEqual('1.0.0', gns3converter.__version__) if __name__ == '__main__': unittest.main()