diff --git a/docs/changelog.rst b/docs/changelog.rst index e7b3c23..1a90a0a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -23,6 +23,20 @@ you can write import pylablib.legacy as pll from pylablib.legacy.aux_libs.devices import Lakeshore +1.4.1 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Devices + + * Added Basler pylon-compatible cameras, BitFlow frame grabbers, AlliedVision Bonito cameras, Thorlabs Elliptec stages, PI-E516 piezo controller, and Sirah Matisse laser. + * Minor additions to Cryocon temperature controller, Cryomagnetics LM510 level meters, and NI DAQmx DAQs. Improved performance of PCO cameras at high frame rates. + * Multiple minor bug fixes and improved support of specific models. + +- Added encoding argument to file loading. +- Improved color images support in image plotter, minor additions to trace plotter. +- Added real-time binning and debounce filters. + + 1.4.0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/conf.py b/docs/conf.py index f7b9f8e..7af6d77 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '1.4.0' +release = '1.4.1' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 33b346c..00f6cbf 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name='pylablib', # name='pylablib-lightweight', - version='1.4.0', + version='1.4.1', description='Code for use in lab environment: experiment automation, data acquisition, device communication', long_description=long_description, long_description_content_type="text/x-rst",