diff --git a/CHANGELOG.md b/CHANGELOG.md index 70fc7e7..ee99942 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ +## Version 1.0.6 + +Released 13-11-2024 + +### Bug Fixes + +* [`65c7549`](https://github.com/mtrocadomoreira/ozzy/commit/65c7549571e5130dac7656eb055d854ea936e4b8): Expression with double quotes inside double quotes was throwing an error for python 3.10 + + + + + + + ## Version 1.0.5 Released 13-11-2024 diff --git a/pyproject.toml b/pyproject.toml index ac43557..4986446 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "ozzy-pic" -version = "1.0.5" +version = "1.0.6" description = "PIC simulation data analysis for the lazy and impatient" authors = [ "Mariana Moreira ", diff --git a/src/ozzy/__init__.py b/src/ozzy/__init__.py index 331e92e..2d4eaca 100644 --- a/src/ozzy/__init__.py +++ b/src/ozzy/__init__.py @@ -14,4 +14,4 @@ ] -__version__ = "1.0.5" +__version__ = "1.0.6"