Skip to content

Commit

Permalink
Bump version to v1.0 to tag a first release
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeFinder2 authored Nov 5, 2019
1 parent 4d98eb1 commit 0410c2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/roslaunch2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import argparse

__version__ = '0.1'
__version__ = '1.0'

# Define the events in roslaunch2 that may be associated with custom actions:
on_initialize = Observable()
Expand Down Expand Up @@ -83,7 +83,7 @@ def _argument_parser(parents=None):
parser.add_argument('--no-colors', default=False, action="store_true",
help='Do not use colored output during processing')
parser.add_argument('--version', action='version', version='%(prog)s v{version}, \
(C) Copyright Adrian Böckenkamp, 16/02/2017'.format(version=__version__))
(C) Copyright Adrian Böckenkamp, 05/11/2019'.format(version=__version__))
parser.add_argument('-d', '--dry-run', default=False, action="store_true",
help='Just print the launch file to stdout, do not run roslaunch')
parser.add_argument('package', nargs='?', help='ROS package name to search for <launchfile>')
Expand Down

0 comments on commit 0410c2d

Please sign in to comment.