diff --git a/CHANGELOG.md b/CHANGELOG.md index a8d27c4e..04a06b57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.1.8 (2022-03-14) +### Fix +* Shutdown on sigint, dispose disposables, no duplicate shutdown msg ([#123](https://github.com/eager-dev/eagerx/issues/123)) ([`1bb6910`](https://github.com/eager-dev/eagerx/commit/1bb6910766c0987d6335cffba104512f5f3f9829)) + ## v0.1.7 (2022-03-09) ### Fix * Test release ([#122](https://github.com/eager-dev/eagerx/issues/122)) ([`dcf00dc`](https://github.com/eager-dev/eagerx/commit/dcf00dc13f8caee63fd35f0a65029b62b2d9c160)) diff --git a/eagerx/__init__.py b/eagerx/__init__.py index 41152520..7c88090e 100644 --- a/eagerx/__init__.py +++ b/eagerx/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.7" +__version__ = "0.1.8" from eagerx.core.constants import process, log # noqa: F401 from eagerx.core.entities import ( # noqa: F401 diff --git a/pyproject.toml b/pyproject.toml index 20af3a2c..715e2ed2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "eagerx" -version = "0.1.7" +version = "0.1.8" description = "Engine Angostic Gym Environments for Robotics" authors = ["Bas van der Heijden ", "Jelle Luijkx "] license = "Apache2.0"