From 699f293757ce00a4169a23b31ee84f65c3cd7cdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20B=C3=B6ckenkamp?= Date: Sun, 24 Oct 2021 14:53:51 +0200 Subject: [PATCH] Bump version to 1.1 and update date --- src/roslaunch2/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/roslaunch2/__init__.py b/src/roslaunch2/__init__.py index 8386089..79688b2 100644 --- a/src/roslaunch2/__init__.py +++ b/src/roslaunch2/__init__.py @@ -3,7 +3,7 @@ # # Author: Adrian Böckenkamp # License: BSD (https://opensource.org/licenses/BSD-3-Clause) -# Date: 08/06/2020 +# Date: 24/10/2021 # Import all submodules typically used in launch modules: from .group import * @@ -21,7 +21,7 @@ import argparse -__version__ = '1.0' +__version__ = '1.1' # Define the events in roslaunch2 that may be associated with custom actions: on_initialize = Observable() @@ -84,7 +84,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, 05/11/2019'.format(version=__version__)) + (C) Copyright Adrian Böckenkamp, 24/10/2021'.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 ')