diff --git a/README.rst b/README.rst index 17b3d28..727d2a6 100644 --- a/README.rst +++ b/README.rst @@ -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 ~~~~~~~~~~ diff --git a/pyzdde/zdde.py b/pyzdde/zdde.py index e2faad0..4725053 100644 --- a/pyzdde/zdde.py +++ b/pyzdde/zdde.py @@ -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 @@ -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) @@ -4853,7 +4853,7 @@ def zSetConfig(self, config): See Also -------- - zGetConfig() + zGetConfig(), zSetMulticon() """ reply = self._sendDDEcommand("SetConfig,{:d}".format(config)) rs = reply.split(',') diff --git a/setup.py b/setup.py index 6d7bc34..88923d6 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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)',