diff --git a/CHANGELOG.md b/CHANGELOG.md index bdd82be3..4de76d03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Release Notes --- +## [1.2.1](https://github.com/thegraphnetwork/epigraphhub_py/compare/1.2.0...1.2.1) (2022-10-10) + + +### Bug Fixes + +* Remove release drafter ([#188](https://github.com/thegraphnetwork/epigraphhub_py/issues/188)) ([55f9935](https://github.com/thegraphnetwork/epigraphhub_py/commit/55f9935250164ed120f16bc75b994cac1df40395)) + # [1.2.0](https://github.com/thegraphnetwork/epigraphhub_py/compare/1.1.1...1.2.0) (2022-09-27) diff --git a/epigraphhub/__init__.py b/epigraphhub/__init__.py index 969ec349..f0d47b50 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 "1.2.0" # changed by semantic-release + return "1.2.1" # changed by semantic-release version: str = get_version() diff --git a/pyproject.toml b/pyproject.toml index a719e7e7..44c3ad99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "epigraphhub" -version = "1.2.0" # changed by semantic-release +version = "1.2.1" # changed by semantic-release description = "Epigraphhub Python package" readme = "README.md" authors = ["thegraphnetwork "]