Skip to content

Commit bd725a4

Browse files
committed
Version 4.2 release
1 parent 9ee6cb1 commit bd725a4

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

README.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,12 @@ repository. This is better if you wish to contribute patches.
359359
Changelog
360360
=========
361361

362+
4.2
363+
---
364+
365+
- Implemented support for FSM4RTC (@yosuke)
366+
- Added doctests (@yosuke)
367+
362368
4.1
363369
---
364370

installer/rtctree_module.wxs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<Module Id="RTCTree41"
55
Language="1033"
66
Codepage="1252"
7-
Version="4.1.0">
7+
Version="4.2.0">
88
<!--Language="1041" Codepage="932" for Japanese-->
99
<Package Id="000485BE-A31F-4D6B-B3D1-337589CEA03D"
1010
Keywords="Installer"
11-
Description="RTCTree 4.1 installer"
11+
Description="RTCTree 4.2 installer"
1212
Comments="RTCTree is a product of the National Institute for Advanced Industrial Science and Technology, Japan"
1313
Manufacturer="AIST"
1414
InstallerVersion="400"
@@ -44,7 +44,7 @@
4444
</Directory>
4545
</Directory>
4646
</Directory>
47-
<Directory Id="RTCTreeInfo" Name="rtctree-4.1.0.dist-info">
47+
<Directory Id="RTCTreeInfo" Name="rtctree-4.2.0.dist-info">
4848
</Directory>
4949
</Directory>
5050
</Directory>
@@ -161,12 +161,12 @@
161161
</DirectoryRef>
162162
<DirectoryRef Id="RTCTreeInfo">
163163
<Component Id="RTCTreeInfo" Guid="A03591BC-0FAA-4B71-979E-EA6A57A864B4">
164-
<File Id="RTCTreeDESCRIPTION.rst" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\DESCRIPTION.rst" KeyPath="yes"/>
165-
<File Id="RTCTreeMETADATA" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\METADATA"/>
166-
<File Id="RTCTreemetadata.json" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\metadata.json"/>
167-
<File Id="RTCTreeRECORD" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\RECORD"/>
168-
<File Id="RTCTreetop_level.txt" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\top_level.txt"/>
169-
<File Id="RTCTreeWHEEL" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\WHEEL"/>
164+
<File Id="RTCTreeDESCRIPTION.rst" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\DESCRIPTION.rst" KeyPath="yes"/>
165+
<File Id="RTCTreeMETADATA" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\METADATA"/>
166+
<File Id="RTCTreemetadata.json" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\metadata.json"/>
167+
<File Id="RTCTreeRECORD" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\RECORD"/>
168+
<File Id="RTCTreetop_level.txt" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\top_level.txt"/>
169+
<File Id="RTCTreeWHEEL" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\WHEEL"/>
170170
</Component>
171171
</DirectoryRef>
172172
</Module>

rtctree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'''
2020

2121

22-
RTCTREE_VERSION = '4.1.0'
22+
RTCTREE_VERSION = '4.2.0'
2323
NAMESERVERS_ENV_VAR = 'RTCTREE_NAMESERVERS'
2424
ORB_ARGS_ENV_VAR = 'RTCTREE_ORB_ARGS'
2525

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def get_outputs(self):
139139

140140

141141
setuptools.setup(name='rtctree',
142-
version='4.1.0',
142+
version='4.2.0',
143143
description='API for interacting with running RT Components '
144144
'and managing RTM-based systems.',
145145
long_description='API for interacting with running RT '

0 commit comments

Comments
 (0)