From 7e3bde8abe352ca1e1c3e9905a5bce1f66fa1ebc Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 26 Apr 2023 14:05:18 +0000 Subject: [PATCH] chore(release): 2.0.5 --- 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 a7acf1a..b94f3ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Release Notes --- +## [2.0.5](https://github.com/thegraphnetwork/epigraphhub_py/compare/2.0.4...2.0.5) (2023-04-26) + + +### Bug Fixes + +* **foph:** add tests for foph and weekly data version ([#215](https://github.com/thegraphnetwork/epigraphhub_py/issues/215)) ([c288c4b](https://github.com/thegraphnetwork/epigraphhub_py/commit/c288c4b50f29459d2994066cabebf2b0e043ab8d)) + ## [2.0.4](https://github.com/thegraphnetwork/epigraphhub_py/compare/2.0.3...2.0.4) (2023-03-14) diff --git a/epigraphhub/__init__.py b/epigraphhub/__init__.py index 358805a..38fc21d 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.4" # changed by semantic-release + return "2.0.5" # changed by semantic-release version: str = get_version() diff --git a/pyproject.toml b/pyproject.toml index a9af03a..b801b10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "epigraphhub" -version = "2.0.4" # changed by semantic-release +version = "2.0.5" # changed by semantic-release description = "Epigraphhub Python package" readme = "README.md" authors = ["thegraphnetwork "]