diff --git a/CHANGELOG.md b/CHANGELOG.md index 89ffa898..8dac82fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # CHANGELOG +## [0.3.2] 2024-5-07 + +### Fixed + +* Fix dependency on outdated UUIDv7 generating library to `uuid6` package ([#75](https://github.com/pymeasure/pyleco/pull/75)) +* Fix codecov CI ([#73](https://github.com/pymeasure/pyleco/pull/73)) + +**Full Changelog**: https://github.com/pymeasure/pyleco/compare/v0.3.1...v0.3.2 + + ## [0.3.1] 2024-04-12 ### Fixed @@ -126,7 +136,8 @@ _Initial alpha version, complies with [LECO protocol alpha-0.0.1](https://github @BenediktBurger, @bilderbuchi, @bklebel -[unreleased]: https://github.com/pymeasure/pyleco/compare/v0.3.1...HEAD +[unreleased]: https://github.com/pymeasure/pyleco/compare/v0.3.2...HEAD +[0.3.2]: https://github.com/pymeasure/pyleco/releases/tag/v0.3.2 [0.3.1]: https://github.com/pymeasure/pyleco/releases/tag/v0.3.1 [0.3.0]: https://github.com/pymeasure/pyleco/releases/tag/v0.3.0 [0.2.2]: https://github.com/pymeasure/pyleco/releases/tag/v0.2.2 diff --git a/README.md b/README.md index ad5b7b60..6f7fc55b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # PyLECO +[![codecov](https://codecov.io/gh/pymeasure/pyleco/graph/badge.svg?token=9OB3GWDLRB)](https://codecov.io/gh/pymeasure/pyleco) +[![pypi release](https://img.shields.io/pypi/v/pyleco.svg)](https://pypi.org/project/pyleco/) +[![DOI](https://zenodo.org/badge/594982645.svg)](https://zenodo.org/doi/10.5281/zenodo.10837366) +[![Common Changelog](https://common-changelog.org/badge.svg)](https://common-changelog.org) + Python reference implementation of the [Laboratory Experiment COntrol (LECO) protocol](https://github.com/pymeasure/leco-protocol). The [reviewed branch](https://github.com/pymeasure/pyleco/tree/reviewed) contains reviewed code, which does not yet contain all necessary modules and classes. @@ -9,11 +14,6 @@ Note: LECO is still under development, such that the code and API might change. The LECO protocol branch [pyleco-state](https://github.com/pymeasure/leco-protocol/tree/pyleco-state) contains the assumptions used in this project, which are not yet accepted into the LECO main branch. These things might change, if LECO defines them differently. -[![codecov](https://codecov.io/gh/pymeasure/pyleco/graph/badge.svg?token=9OB3GWDLRB)](https://codecov.io/gh/pymeasure/pyleco) -[![pypi release](https://img.shields.io/pypi/v/pyleco.svg)](https://pypi.org/project/pyleco/) -[![DOI](https://zenodo.org/badge/594982645.svg)](https://zenodo.org/doi/10.5281/zenodo.10837366) -[![Common Changelog](https://common-changelog.org/badge.svg)](https://common-changelog.org) - For a tutorial on how to get started, see [GETTING_STARTED.md](https://github.com/pymeasure/pyleco/blob/main/GETTING_STARTED.md).