Skip to content

Commit ba392b4

Browse files
committed
Updates to Doc.
Version bump to 1.0.10
1 parent 01eddf2 commit ba392b4

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

docs/instrument.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,9 @@ The classical interface
414414
speed of the movement. 1.0 correspond to the default speed. (internally the ``GoToWithSpeed`` method is used,
415415
if speed is not 1.0).
416416

417+
.. versionchanged:: 1.0.10
418+
"speed" keyword added.
419+
417420
.. method:: MoveTo(x=None, y=None, z=None, a=None, b=None)
418421

419422
Moves stage to indicated position. Stage is only moved along

temscript/microscope.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,9 @@ def set_stage_position(self, pos=None, method="GO", **kw):
158158
159159
* "GO": Moves directly to new stage position
160160
* "MOVE": Avoids pole piece touches, by first zeroing the angle, moving the stage than, and setting the angles again.
161+
162+
.. versionchanged:: 1.0.10
163+
"speed" keyword added.
161164
"""
162165
pos = dict(pos, **kw) if pos is not None else dict(**kw)
163166
if method == "GO":

temscript/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.9'
1+
__version__ = '1.0.10'

0 commit comments

Comments
 (0)