diff --git a/docs/conf.py b/docs/conf.py index fcb0182a..ff061ade 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ author = u'Michael Hart, Michael Wedel, Owen Arnold' version = u'1.0' -release = u'1.0.2' +release = u'1.0.3' language = None diff --git a/docs/release_notes/index.rst b/docs/release_notes/index.rst index 518726a1..f5ab803b 100644 --- a/docs/release_notes/index.rst +++ b/docs/release_notes/index.rst @@ -7,6 +7,7 @@ called "Plankton"). .. toctree:: :maxdepth: 1 + release_1_0_3 release_1_0_2 release_1_0_1 release_1_0_0 diff --git a/docs/release_notes/release_1_0_3.rst b/docs/release_notes/release_1_0_3.rst index dcd4b467..99f8eab7 100644 --- a/docs/release_notes/release_1_0_3.rst +++ b/docs/release_notes/release_1_0_3.rst @@ -1,9 +1,11 @@ -:orphan: - Release 1.0.3 ============= -This release is currently in progress. +This version was released on March 24th, 2017. In this release, the :mod:`~lewis.adapters.epics`- +module has received some updates. Some important groundwork for future improvements has been +laid as well, which resulted in the ability to switch device setups at runtime via the control +server and a new command line syntax for configuring communications. The control server and client +have been improved as well. Command line interface change ----------------------------- diff --git a/lewis/__init__.py b/lewis/__init__.py index 6ecbfba1..8fe31c26 100644 --- a/lewis/__init__.py +++ b/lewis/__init__.py @@ -17,4 +17,4 @@ # along with this program. If not, see . # ********************************************************************* -__version__ = '1.0.2' +__version__ = '1.0.3' diff --git a/setup.py b/setup.py index 44e5e739..8078e0e1 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def readme(): setup( name='lewis', - version='1.0.2', + version='1.0.3', description='LeWIS - Let\'s Write Intricate Simulators!', long_description=readme(), url='https://github.com/DMSC-Instrument-Data/lewis', @@ -55,7 +55,7 @@ def readme(): keywords='hardware simulation controls', packages=find_packages(exclude=['docs', 'test']), - install_requires=['six', 'pyzmq', 'json-rpc'], + install_requires=['six', 'pyzmq', 'json-rpc', 'semantic_version', 'PyYAML'], extras_require={ 'epics': ['pcaspy'],