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.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TwoWheelDev committed Nov 4, 2014
1 parent e3ec7e9 commit e75292d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
@@ -1,3 +1,10 @@
1.1.0 Daniel Lintott <daniel@serverb.co.uk>

* Add new custom exception ConvertError
* Raise a ConvertError if we can't get a snapshot name
* Add quiet mode to prevent console output
* Include mscvr100.dll when compiling for Windows

1.0.0 Daniel Lintott <daniel@serverb.co.uk>

* Stable release version 1.0!
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0'
version = '1.1'
# The full version, including alpha/beta/rc tags.
release = '1.0.1-dev1'
release = '1.1.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
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__ = '1.0.1-dev1'
__version__ = '1.1.0'
2 changes: 1 addition & 1 deletion tests/test_version.py
Expand Up @@ -4,7 +4,7 @@

class TestVersion(unittest.TestCase):
def test_version(self):
self.assertEqual('1.0.1-dev1', gns3converter.__version__)
self.assertEqual('1.1.0', gns3converter.__version__)

if __name__ == '__main__':
unittest.main()

0 comments on commit e75292d

Please sign in to comment.