diff --git a/CHANGELOG.md b/CHANGELOG.md index e241d651..399c5af3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,9 @@ Release Notes --- + +## [1.0.1](https://github.com/thegraphnetwork/epigraphhub_py/compare/1.0.0...1.0.1) (2022-02-18) + + +### Bug Fixes + +* fix version by ci ([#140](https://github.com/thegraphnetwork/epigraphhub_py/issues/140)) ([9d9d924](https://github.com/thegraphnetwork/epigraphhub_py/commit/9d9d924ca5966ed8b17688f8bf4f1068b4aa6c18)) diff --git a/epigraphhub/__init__.py b/epigraphhub/__init__.py index 7617e3f7..512d5bf2 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 "0.0.0" # changed by semantic-release + return "1.0.1" # changed by semantic-release version: str = get_version() diff --git a/pyproject.toml b/pyproject.toml index 99a7efad..c2e33ce1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "epigraphhub" -version = "0.1.0" # changed by semantic-release +version = "1.0.1" # changed by semantic-release description = "Epigraphhub Python package" readme = "README.md" authors = ["thegraphnetwork "]