diff --git a/CHANGELOG.md b/CHANGELOG.md index 4de76d0..d0b95aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ Release Notes --- +## [2.0.0](https://github.com/thegraphnetwork/epigraphhub_py/compare/1.2.1...2.0.0) (2022-12-16) + + +### ⚠ BREAKING CHANGES + +* **semantic-release:** add conventionalcommits in release step on ci (#205) + +### Features + +* **pr-linter:** remove branking change from pr linter ([#203](https://github.com/thegraphnetwork/epigraphhub_py/issues/203)) ([6eeed96](https://github.com/thegraphnetwork/epigraphhub_py/commit/6eeed96c27d6d8b497d1c890c30abbc9c9dcdd17)) + + +### Bug Fixes + +* **semantic-release:** add conventionalcommits in release step on ci ([#205](https://github.com/thegraphnetwork/epigraphhub_py/issues/205)) ([de62501](https://github.com/thegraphnetwork/epigraphhub_py/commit/de6250155355955f809559dcf9e1fe3a8eea9ff1)) + ## [1.2.1](https://github.com/thegraphnetwork/epigraphhub_py/compare/1.2.0...1.2.1) (2022-10-10) diff --git a/epigraphhub/__init__.py b/epigraphhub/__init__.py index f0d47b5..f8e1993 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.1" # changed by semantic-release + return "2.0.0" # changed by semantic-release version: str = get_version() diff --git a/pyproject.toml b/pyproject.toml index 5acd29f..3da71fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "epigraphhub" -version = "1.2.1" # changed by semantic-release +version = "2.0.0" # changed by semantic-release description = "Epigraphhub Python package" readme = "README.md" authors = ["thegraphnetwork "]