Skip to content

Commit 699f293

Browse files
committed
Bump version to 1.1 and update date
1 parent a750ce3 commit 699f293

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/roslaunch2/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Author: Adrian Böckenkamp
55
# License: BSD (https://opensource.org/licenses/BSD-3-Clause)
6-
# Date: 08/06/2020
6+
# Date: 24/10/2021
77

88
# Import all submodules typically used in launch modules:
99
from .group import *
@@ -21,7 +21,7 @@
2121

2222
import argparse
2323

24-
__version__ = '1.0'
24+
__version__ = '1.1'
2525

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

0 commit comments

Comments
 (0)