Skip to content

Commit

Permalink
Ready for 2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
indranilsinharoy committed Sep 1, 2015
1 parent aff8e52 commit 0271b56
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PyZDDE: Python Zemax Dynamic Data Exchange
Current revision
'''''''''''''''''

2.0.0a1 (Last significant update on 07/25/2015)
2.0.0 (Last significant update on 09/01/2015)

Change log
~~~~~~~~~~
Expand Down
6 changes: 3 additions & 3 deletions pyzdde/zdde.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ class PyZDDE(object):
__server = 0
__appNameDict = _createAppNameDict(_MAX_PARALLEL_CONV) # {'ZEMAX': False, 'ZEMAX1': False}

version = '2.0.0a1'
version = '2.0.0'

# Other class variables
# Surface data codes for getting and setting surface data
Expand Down Expand Up @@ -1661,7 +1661,7 @@ def zGetMulticon(self, config, row):
See Also
--------
zSetMulticon()
zSetMulticon(), zGetConfig()
"""
cmd = "GetMulticon,{config:d},{row:d}".format(config=config,row=row)
reply = self._sendDDEcommand(cmd)
Expand Down Expand Up @@ -4853,7 +4853,7 @@ def zSetConfig(self, config):
See Also
--------
zGetConfig()
zGetConfig(), zSetMulticon()
"""
reply = self._sendDDEcommand("SetConfig,{:d}".format(config))
rs = reply.split(',')
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='PyZDDE',
version='2.0.0a1',
version='2.0.0',
description='Zemax / OpticStudio standalone extension using Python',
long_description=long_description,
author='Indranil Sinharoy',
Expand All @@ -28,7 +28,7 @@
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Environment :: Win32 (MS Windows)',
Expand Down

0 comments on commit 0271b56

Please sign in to comment.