From 3628c13eb6002144f69444defbc4cdadb6c391c1 Mon Sep 17 00:00:00 2001 From: Geoffrey Biggs Date: Thu, 22 Jun 2017 12:02:59 +0900 Subject: [PATCH] Release 4.2 --- README.txt | 8 ++++++++ README_ja.txt | 8 ++++++++ installer/rtshell.wxs | 6 +++--- installer/rtshell_module.wxs | 20 ++++++++++---------- rtshell/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 31 insertions(+), 15 deletions(-) diff --git a/README.txt b/README.txt index f5f4f72..c7ebb23 100644 --- a/README.txt +++ b/README.txt @@ -163,6 +163,14 @@ To create a redistributable wheel package, run the following command: Changelog ========= +4.2 +--- + +- Add "-d" option to rtcon to check for duplicate connections +- Add support for FSM4RTC, with rtwatch and rtfsm commands (@yosuke) +- Add doctests (@yosuke) +- Fix direction of rtstodot graphs (@haudren) + 4.1 --- diff --git a/README_ja.txt b/README_ja.txt index 065b5cd..7cf19f9 100644 --- a/README_ja.txt +++ b/README_ja.txt @@ -136,6 +136,14 @@ $ ./test/test_cmds.py ~/share/OpenRTM-aist/examples/rtcs/ rtactTests Changelog ========= +4.2 +--- + +- Add "-d" option to rtcon to check for duplicate connections +- Add support for FSM4RTC, with rtwatch and rtfsm commands (@yosuke) +- Add doctests (@yosuke) +- Fix direction of rtstodot graphs (@haudren) + 4.1 --- diff --git a/installer/rtshell.wxs b/installer/rtshell.wxs index e235dd4..0b9b96d 100644 --- a/installer/rtshell.wxs +++ b/installer/rtshell.wxs @@ -1,17 +1,17 @@ - + Version="4.2.0"> + Version="4.2.0"> - + @@ -170,12 +170,12 @@ - - - - - - + + + + + + @@ -230,7 +230,7 @@ - + diff --git a/rtshell/__init__.py b/rtshell/__init__.py index f10ca9c..141a771 100644 --- a/rtshell/__init__.py +++ b/rtshell/__init__.py @@ -18,7 +18,7 @@ ''' -RTSH_VERSION = '4.1.0' +RTSH_VERSION = '4.2.0' # vim: tw=79 diff --git a/setup.py b/setup.py index 43f5a7f..f910bd1 100644 --- a/setup.py +++ b/setup.py @@ -394,7 +394,7 @@ def run(self): setuptools.setup(name='rtshell', - version='4.1.0', + version='4.2.0', description='Shell commands for managing RT Components and RT Systems.', author='Geoffrey Biggs and contributors', author_email='geoffrey.biggs@aist.go.jp',