Skip to content

Commit

Permalink
Bug fix: display correct version number with 'netlab version' command
Browse files Browse the repository at this point in the history
  • Loading branch information
ipspace committed Dec 1, 2021
1 parent fd1ddc7 commit 70fe38d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion netsim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# topology file
#

__version__ = "1.0.2"
__version__ = "1.0.3-dev"
4 changes: 2 additions & 2 deletions netsim/cli/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import sys
import typing
from .. import __version__
import netsim

def run(args: typing.List[str]) -> None:
print("netsim-tools version %s" % __version__)
print("netsim-tools version %s" % netsim.__version__)

0 comments on commit 70fe38d

Please sign in to comment.