diff --git a/docs/changelog.rst b/docs/changelog.rst index 41a3680..8baed9b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -23,6 +23,33 @@ you can write import pylablib.legacy as pll from pylablib.legacy.aux_libs.devices import Lakeshore +1.4.3 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Devices + + * Added multiple devices: + + + Agilent XGS600 pressure gauge controller + + Hubner Cobolt lasers (tested with Cobolt MLD 06-01 laser) + + Omron E5_C temperature controllers (tested with E5GC-QX1A6M-015 controller) + + Thorlabs Kinesis Piezo controllers (tested with KPZ101) + + * Extended device support: + + + Multi-axis Trinamic TMCM controllers (tested with TMCM6110) + + Matisse Commander server support for Sirah Matisse lasers + + Added trigger mode selection for uc480/uEye cameras + + * Bug fixes and improved support of specific models: + + + Thorlabs Scientific Cameras monochrome bug + + Fixed minor Thorlabs Kinesis enumeration bugs and KIM101 channel selection bug + +- Minor additional functions and bugfixes + * Fixed module versioning bug which prevented the use of PyInstaller + * GUI additions: button-selector widgets (alternative to combo box), tab hiding, widget tags for finer GUI control + 1.4.2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/conf.py b/docs/conf.py index 507af90..344c6f3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,13 +24,13 @@ # -- Project information ----------------------------------------------------- project = 'pylablib' -copyright = '2023, Alexey Shkarin' +copyright = '2024, Alexey Shkarin' author = 'Alexey Shkarin' # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '1.4.2' +release = '1.4.3' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 5094285..3690d3d 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def list_cython_extensions(folder="pylablib"): setup( name='pylablib', # name='pylablib-lightweight', - version='1.4.2', + version='1.4.3', description='Code for use in lab environment: experiment automation, data acquisition, device communication', long_description=long_description, long_description_content_type="text/x-rst",