From 2f33d6ec3748d854af034166ddeb1050e671a72f Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 8 Feb 2023 16:24:11 +0000 Subject: [PATCH] chore(release): 2.0.3 --- CHANGELOG.md | 7 +++++++ epigraphhub/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3800578..6e6476c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Release Notes --- +## [2.0.3](https://github.com/thegraphnetwork/epigraphhub_py/compare/2.0.2...2.0.3) (2023-02-08) + + +### Bug Fixes + +* **sinan:** rollback sinan data path to /tmp ([#210](https://github.com/thegraphnetwork/epigraphhub_py/issues/210)) ([bf0f2ec](https://github.com/thegraphnetwork/epigraphhub_py/commit/bf0f2eccd26f9cb5cb808e7914b5b487f64e981f)) + ## [2.0.2](https://github.com/thegraphnetwork/epigraphhub_py/compare/2.0.1...2.0.2) (2023-02-07) diff --git a/epigraphhub/__init__.py b/epigraphhub/__init__.py index c796537..d32fa60 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.2" # changed by semantic-release + return "2.0.3" # changed by semantic-release version: str = get_version() diff --git a/pyproject.toml b/pyproject.toml index aad4255..3cb5892 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "epigraphhub" -version = "2.0.2" # changed by semantic-release +version = "2.0.3" # changed by semantic-release description = "Epigraphhub Python package" readme = "README.md" authors = ["thegraphnetwork "]