diff --git a/CHANGELOG.md b/CHANGELOG.md index 280f177..7b6ab68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 0.2.1 - July 19, 2023 + +### ✨ Improved + +* `SpectrographSet.expose()` now accepts a `count` parameters to expose multiple frames. +* The parameter `flavour` for `SpectrographSet.expose()` is not explicitely exposed and documented. +* `SpectrographSet.calibrate()` accepts a `slew_telescopes` parameters. Whether the telescopes are slewed is also determined by the type of calibrations to take. +* Various improvements to the calibration schema. `flavour`, `warmup`, and the `fibsel` parameters now have defaults in the configuration file to which the calibration routine will revert to. If `fibsel: true`, a default mask iteration will be performed. Both darks and lamps now accept `exposure_time` which can be a float or a list of floats. + +### 🏷️ Changed + +* `SpectrographSet.calibrate()` does not park the telescope by default. + +### ⚙️ Engineering + +* Progress bars are now transient. + + ## 0.2.0 - July 18, 2023 ### 🚀 New diff --git a/poetry.lock b/poetry.lock index 6a567a7..833a048 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2964,13 +2964,13 @@ makefun = ">=1.15.1,<2.0.0" [[package]] name = "urllib3" -version = "2.0.3" +version = "2.0.4" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=3.7" files = [ - {file = "urllib3-2.0.3-py3-none-any.whl", hash = "sha256:48e7fafa40319d358848e1bc6809b208340fafe2096f1725d05d67443d0483d1"}, - {file = "urllib3-2.0.3.tar.gz", hash = "sha256:bee28b5e56addb8226c96f7f13ac28cb4c301dd5ea8a6ca179c0b9835e032825"}, + {file = "urllib3-2.0.4-py3-none-any.whl", hash = "sha256:de7df1803967d2c2a98e4b11bb7d6bd9210474c46e8a0401514e3a42a75ebde4"}, + {file = "urllib3-2.0.4.tar.gz", hash = "sha256:8d22f86aae8ef5e410d4f539fde9ce6b2113a001bb4d189e0aed70642d602b11"}, ] [package.extras] diff --git a/pyproject.toml b/pyproject.toml index e899257..2ce9e8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lvmgort" -version = "0.2.1a0" +version = "0.2.1" description = "The brains of LVM observing" authors = ["José Sánchez-Gallego "] license = "BSD-3-Clause"