diff --git a/CHANGELOG.md b/CHANGELOG.md index e4829888..098a8ba8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added -* Handle corrupted json files by @bleykauf in https://github.com/linien-org/linien/pull/399 * Show differences when local and remote parameters do not match by @bleykauf in https://github.com/linien-org/linien/pull/400 * Show voltage on the x-axis when sweeping by @bleykauf in https://github.com/linien-org/linien/pull/404 +## [2.0.3] - 2024-05-29 + +### Fixed +* Now compatible with Python 3.12 by bumping version of `fabric` by @bleykauf in https://github.com/linien-org/linien/pull/406, thanks to @systemofapwne for reporting this issue + +### Added +* Handle corrupted json files by @bleykauf in https://github.com/linien-org/linien/pull/399 + + ## [2.0.2] - 2024-05-14 ### Fixed @@ -223,8 +231,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * **Bug fixes and performance improvements** -[Unreleased]: https://github.com/linien-org/linien/compare/v2.0.1...HEAD -[v2.0.2]: https://github.com/linien-org/linien/compare/v2.0.1...v2.0.2 +[Unreleased]: https://github.com/linien-org/linien/compare/v2.0.3...HEAD +[2.0.3]: https://github.com/linien-org/linien/compare/v2.0.2...v2.0.3 +[2.0.2]: https://github.com/linien-org/linien/compare/v2.0.1...v2.0.2 [2.0.1]: https://github.com/linien-org/linien/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/linien-org/linien/compare/v1.0.2...v2.0.0 [1.0.2]: https://github.com/linien-org/linien/compare/v1.0.1...v1.0.2 diff --git a/linien-client/pyproject.toml b/linien-client/pyproject.toml index c328bc4c..67c4fcc6 100644 --- a/linien-client/pyproject.toml +++ b/linien-client/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "linien-client" -version = "2.1.0.dev0" +version = "2.0.3" authors = [ { name = "Benjamin Wiegand", email = "benjamin.wiegand@physik.hu-berlin.de" }, { name = "Bastian Leykauf", email = "leykauf@physik.hu-berlin.de" }, @@ -23,9 +23,9 @@ classifiers = [ ] requires-python = ">=3.8" dependencies = [ - "fabric>=2.7.0,<3.0", + "fabric>=3.2.2,<4.0", "typing_extensions>=4.5.0,<5.0", - "linien-common==2.1.0.dev0", + "linien-common==2.0.3", ] [project.readme] diff --git a/linien-common/pyproject.toml b/linien-common/pyproject.toml index 772cfbd0..22cf89d7 100644 --- a/linien-common/pyproject.toml +++ b/linien-common/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "linien-common" -version = "2.1.0.dev0" +version = "2.0.3" authors = [ { name = "Benjamin Wiegand", email = "benjamin.wiegand@physik.hu-berlin.de" }, { name = "Bastian Leykauf", email = "leykauf@physik.hu-berlin.de" }, diff --git a/linien-gui/pyproject.toml b/linien-gui/pyproject.toml index ce1c2eac..74cb9154 100644 --- a/linien-gui/pyproject.toml +++ b/linien-gui/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "linien-gui" -version = "2.1.0.dev0" +version = "2.0.3" authors = [ { name = "Benjamin Wiegand", email = "benjamin.wiegand@physik.hu-berlin.de" }, { name = "Bastian Leykauf", email = "leykauf@physik.hu-berlin.de" }, @@ -28,7 +28,7 @@ dependencies = [ "PyQt5>=5.12.0,<6.0", "requests>=2.31.0,<3.0", "superqt>=0.2.3", - "linien_client==2.1.0.dev0", + "linien_client==2.0.3", ] [project.readme] diff --git a/linien-server/pyproject.toml b/linien-server/pyproject.toml index 20968c30..a5673ee6 100644 --- a/linien-server/pyproject.toml +++ b/linien-server/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "linien-server" -version = "2.1.0.dev0" +version = "2.0.3" authors = [ { name = "Benjamin Wiegand", email = "benjamin.wiegand@physik.hu-berlin.de" }, { name = "Bastian Leykauf", email = "leykauf@physik.hu-berlin.de" }, @@ -28,7 +28,7 @@ dependencies = [ "influxdb-client[ciso]>=1.9,<2.0", "pylpsd>=0.1.4", "pyrp3>=2.0.1,<3.0;platform_machine=='armv7l'", - "linien-common==2.1.0.dev0", + "linien-common==2.0.3", ] [project.readme]