diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e6476c..a7acf1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Release Notes --- +## [2.0.4](https://github.com/thegraphnetwork/epigraphhub_py/compare/2.0.3...2.0.4) (2023-03-14) + + +### Bug Fixes + +* **sinan:** split sinan continue ([#213](https://github.com/thegraphnetwork/epigraphhub_py/issues/213)) ([534c38e](https://github.com/thegraphnetwork/epigraphhub_py/commit/534c38eb53cb4006a49d9010b7353af5634d0216)) + ## [2.0.3](https://github.com/thegraphnetwork/epigraphhub_py/compare/2.0.2...2.0.3) (2023-02-08) diff --git a/epigraphhub/__init__.py b/epigraphhub/__init__.py index d32fa60..358805a 100644 --- a/epigraphhub/__init__.py +++ b/epigraphhub/__init__.py @@ -9,7 +9,7 @@ def get_version() -> str: try: return importlib_metadata.version(__name__) except importlib_metadata.PackageNotFoundError: # pragma: no cover - return "2.0.3" # changed by semantic-release + return "2.0.4" # changed by semantic-release version: str = get_version() diff --git a/pyproject.toml b/pyproject.toml index 18b3c5f..9be5790 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "epigraphhub" -version = "2.0.3" # changed by semantic-release +version = "2.0.4" # changed by semantic-release description = "Epigraphhub Python package" readme = "README.md" authors = ["thegraphnetwork "]