Skip to content

Commit

Permalink
Merge pull request #247 from DMSC-Instrument-Data/release_1_1_1
Browse files Browse the repository at this point in the history
Prepare release 1.1.1
  • Loading branch information
MikeHart85 authored Jun 2, 2017
2 parents f9cd8ef + 1e5beff commit a157a67
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author = u'Michael Hart, Michael Wedel, Owen Arnold'

version = u'1.1'
release = u'1.1.0'
release = u'1.1.1'

language = None

Expand Down
1 change: 1 addition & 0 deletions docs/release_notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ called "Plankton").
.. toctree::
:maxdepth: 1

release_1_1_1
release_1_1_0
release_1_0_3
release_1_0_2
Expand Down
15 changes: 15 additions & 0 deletions docs/release_notes/release_1_1_1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Release 1.1.1
=============

This is a pure bug fix release that removes three problems that were overlooked in the 1.1 release.

Bug fixes
---------

- Version strings in ``framework_version`` are now coerced, so that for example ``1.1`` becomes
``1.1.0`` automatically.

- Lewis does no longer hang forever when starting a network service fails.

- Switching setups at runtime works again as in release 1.0.3, in 1.1. it had been disabled due
to an oversight.
2 changes: 1 addition & 1 deletion lewis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# *********************************************************************

__version__ = '1.1.0'
__version__ = '1.1.1'
2 changes: 1 addition & 1 deletion lewis/devices/chopper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# *********************************************************************

framework_version = '1.1.0'
framework_version = '1.1.1'
2 changes: 1 addition & 1 deletion lewis/devices/julabo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# *********************************************************************

framework_version = '1.1.0'
framework_version = '1.1.1'
2 changes: 1 addition & 1 deletion lewis/devices/linkam_t95/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# *********************************************************************

framework_version = '1.1.0'
framework_version = '1.1.1'
2 changes: 1 addition & 1 deletion lewis/examples/dual_device/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ class VerySimpleStreamInterface(StreamInterface):
out_terminator = '\r\n'


framework_version = '1.1.0'
framework_version = '1.1.1'
2 changes: 1 addition & 1 deletion lewis/examples/example_motor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,4 @@ def set_target(self, new_target):
)
)

framework_version = '1.1.0'
framework_version = '1.1.1'
2 changes: 1 addition & 1 deletion lewis/examples/modbus_device/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ class ExampleModbusInterface(ModbusInterface):
hr = ir


framework_version = '1.1.0'
framework_version = '1.1.1'
2 changes: 1 addition & 1 deletion lewis/examples/simple_device/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ def handle_error(self, request, error):
return 'An error occurred: ' + repr(error)


framework_version = '1.1.0'
framework_version = '1.1.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def readme():

setup(
name='lewis',
version='1.1.0',
version='1.1.1',
description='LeWIS - Let\'s Write Intricate Simulators!',
long_description=readme(),
url='https://github.com/DMSC-Instrument-Data/lewis',
Expand Down

0 comments on commit a157a67

Please sign in to comment.