diff --git a/CHANGELOG.md b/CHANGELOG.md index cadd433..3800578 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Release Notes --- +## [2.0.2](https://github.com/thegraphnetwork/epigraphhub_py/compare/2.0.1...2.0.2) (2023-02-07) + + +### Bug Fixes + +* **sinan-collection:** bugfix on loading sinan data paths ([#208](https://github.com/thegraphnetwork/epigraphhub_py/issues/208)) ([ee3fce1](https://github.com/thegraphnetwork/epigraphhub_py/commit/ee3fce14cfe9c04cbfa5f4acff476f43ca8a10f4)) +* **sinan:** use home dir to download sinan data ([#209](https://github.com/thegraphnetwork/epigraphhub_py/issues/209)) ([70fd64b](https://github.com/thegraphnetwork/epigraphhub_py/commit/70fd64ba3d1410aa5ef58194fe4d1829e4e46d5d)) + ## [2.0.1](https://github.com/thegraphnetwork/epigraphhub_py/compare/2.0.0...2.0.1) (2023-01-16) diff --git a/epigraphhub/__init__.py b/epigraphhub/__init__.py index c85babe..c796537 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.1" # changed by semantic-release + return "2.0.2" # changed by semantic-release version: str = get_version() diff --git a/pyproject.toml b/pyproject.toml index b9e0edd..aad4255 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "epigraphhub" -version = "2.0.1" # changed by semantic-release +version = "2.0.2" # changed by semantic-release description = "Epigraphhub Python package" readme = "README.md" authors = ["thegraphnetwork "]