Skip to content

Commit

Permalink
Version 4.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gbiggs committed Jun 22, 2017
1 parent 9ee6cb1 commit bd725a4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,12 @@ repository. This is better if you wish to contribute patches.
Changelog
=========

4.2
---

- Implemented support for FSM4RTC (@yosuke)
- Added doctests (@yosuke)

4.1
---

Expand Down
18 changes: 9 additions & 9 deletions installer/rtctree_module.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<Module Id="RTCTree41"
Language="1033"
Codepage="1252"
Version="4.1.0">
Version="4.2.0">
<!--Language="1041" Codepage="932" for Japanese-->
<Package Id="000485BE-A31F-4D6B-B3D1-337589CEA03D"
Keywords="Installer"
Description="RTCTree 4.1 installer"
Description="RTCTree 4.2 installer"
Comments="RTCTree is a product of the National Institute for Advanced Industrial Science and Technology, Japan"
Manufacturer="AIST"
InstallerVersion="400"
Expand Down Expand Up @@ -44,7 +44,7 @@
</Directory>
</Directory>
</Directory>
<Directory Id="RTCTreeInfo" Name="rtctree-4.1.0.dist-info">
<Directory Id="RTCTreeInfo" Name="rtctree-4.2.0.dist-info">
</Directory>
</Directory>
</Directory>
Expand Down Expand Up @@ -161,12 +161,12 @@
</DirectoryRef>
<DirectoryRef Id="RTCTreeInfo">
<Component Id="RTCTreeInfo" Guid="A03591BC-0FAA-4B71-979E-EA6A57A864B4">
<File Id="RTCTreeDESCRIPTION.rst" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\DESCRIPTION.rst" KeyPath="yes"/>
<File Id="RTCTreeMETADATA" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\METADATA"/>
<File Id="RTCTreemetadata.json" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\metadata.json"/>
<File Id="RTCTreeRECORD" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\RECORD"/>
<File Id="RTCTreetop_level.txt" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\top_level.txt"/>
<File Id="RTCTreeWHEEL" Source="C:\Python27\Lib\site-packages\rtctree-4.1.0.dist-info\WHEEL"/>
<File Id="RTCTreeDESCRIPTION.rst" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\DESCRIPTION.rst" KeyPath="yes"/>
<File Id="RTCTreeMETADATA" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\METADATA"/>
<File Id="RTCTreemetadata.json" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\metadata.json"/>
<File Id="RTCTreeRECORD" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\RECORD"/>
<File Id="RTCTreetop_level.txt" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\top_level.txt"/>
<File Id="RTCTreeWHEEL" Source="C:\Python27\Lib\site-packages\rtctree-4.2.0.dist-info\WHEEL"/>
</Component>
</DirectoryRef>
</Module>
Expand Down
2 changes: 1 addition & 1 deletion rtctree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'''


RTCTREE_VERSION = '4.1.0'
RTCTREE_VERSION = '4.2.0'
NAMESERVERS_ENV_VAR = 'RTCTREE_NAMESERVERS'
ORB_ARGS_ENV_VAR = 'RTCTREE_ORB_ARGS'

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def get_outputs(self):


setuptools.setup(name='rtctree',
version='4.1.0',
version='4.2.0',
description='API for interacting with running RT Components '
'and managing RTM-based systems.',
long_description='API for interacting with running RT '
Expand Down

0 comments on commit bd725a4

Please sign in to comment.