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.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
TwoWheelDev committed Feb 4, 2015
1 parent 5558512 commit c86ca02
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.2.2 Daniel Lintott <[email protected]>

* Correct the path used for multi-host VPCS configs
Thanks to rednectar for spotting this.
* Fix running tests on Windows

1.2.1 Daniel Lintott <[email protected]>

* Fix copying of images when path in topology is relative (Fixes #22)
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

# General information about the project.
project = 'gns3-converter'
copyright = '2014, Daniel Lintott'
copyright = '2014-2015, Daniel Lintott'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand All @@ -57,7 +57,7 @@
# The short X.Y version.
version = '1.2'
# The full version, including alpha/beta/rc tags.
release = '1.2.1'
release = '1.2.2'

# 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__ = '1.2.1'
__version__ = '1.2.2'
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('1.2.1', gns3converter.__version__)
self.assertEqual('1.2.2', gns3converter.__version__)

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

0 comments on commit c86ca02

Please sign in to comment.