diff --git a/CHANGELOG.md b/CHANGELOG.md index effd861..e42739f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v1.7.0 (2023-09-05) + +### Feature + +* Async support for subgrounds (+ more) ([#36](https://github.com/0xPlaygrounds/subgrounds/issues/36)) ([`929a882`](https://github.com/0xPlaygrounds/subgrounds/commit/929a88221ac571b1a45b5877e62d6d4cb2d1a91e)) + ## v1.6.1 (2023-08-01) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 319a7c2..7457b4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "subgrounds" -version = "1.6.1" +version = "1.7.0" description = "A Pythonic data access layer for applications querying data from The Graph Network." authors = [ "cvauclair ", diff --git a/subgrounds/__init__.py b/subgrounds/__init__.py index fdf7396..11bcb1b 100644 --- a/subgrounds/__init__.py +++ b/subgrounds/__init__.py @@ -1,7 +1,7 @@ from subgrounds.client import AsyncSubgrounds, Subgrounds from subgrounds.subgraph import FieldPath, Subgraph, SyntheticField -__version__ = "1.6.1" +__version__ = "1.7.0" __all__ = [ "AsyncSubgrounds",