Skip to content

Commit

Permalink
Merge pull request #279 from ess-dmsc/prepare_release_1.2.1
Browse files Browse the repository at this point in the history
Prepare release 1.2.1
  • Loading branch information
DominicOram authored Sep 25, 2019
2 parents d9a4b18 + f02d542 commit 152ab98
Show file tree
Hide file tree
Showing 12 changed files with 28 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 @@ -23,7 +23,7 @@
author = u'Michael Hart, Michael Wedel, Owen Arnold'

version = u'1.2'
release = u'1.2.0'
release = u'1.2.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 @@ -6,6 +6,7 @@ Here you can find release notes for all released versions of Lewis.
.. toctree::
:maxdepth: 1

release_1_2_1
release_1_2_0
release_1_1_1
release_1_1_0
Expand Down
17 changes: 17 additions & 0 deletions docs/release_notes/release_1_2_1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Release 1.2.1
=============

This is a minor release that fixes one bug and adds documentation.

Documentation
-------------

- Added quickstart guide.

- Removed references to plankton.


Bug fixes
---------

- Improved exception handling for module imports
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.2.0',
version='1.2.1',
description='LeWIS - Let\'s Write Intricate Simulators!',
long_description=readme(),
url='https://github.com/DMSC-Instrument-Data/lewis',
Expand Down
2 changes: 1 addition & 1 deletion src/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.2.0'
__version__ = '1.2.1'
2 changes: 1 addition & 1 deletion src/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.2.0'
framework_version = '1.2.1'
2 changes: 1 addition & 1 deletion src/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.2.0'
framework_version = '1.2.1'
2 changes: 1 addition & 1 deletion src/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.2.0'
framework_version = '1.2.1'
2 changes: 1 addition & 1 deletion src/lewis/examples/dual_device/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ class VerySimpleStreamInterface(StreamInterface):
out_terminator = '\r\n'


framework_version = '1.2.0'
framework_version = '1.2.1'
2 changes: 1 addition & 1 deletion src/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.2.0'
framework_version = '1.2.1'
2 changes: 1 addition & 1 deletion src/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.2.0'
framework_version = '1.2.1'
2 changes: 1 addition & 1 deletion src/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.2.0'
framework_version = '1.2.1'

0 comments on commit 152ab98

Please sign in to comment.