Skip to content
This repository has been archived by the owner on Mar 14, 2019. It is now read-only.

Commit

Permalink
Update changelog and release version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TwoWheelDev committed Nov 3, 2014
1 parent 094217a commit d12f314
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1.0.0 Daniel Lintott <[email protected]>

* 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 <[email protected]>

* Correctly handle a cloud being in a topology but not connected
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion gns3converter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
__version__ = '0.5.1.dev1'
__version__ = '1.0.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit d12f314

Please sign in to comment.