From 8adfa538ab3acc0a5c6960fa9935a1cf5f39ff47 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 5 Sep 2023 22:30:41 +0000 Subject: [PATCH] 1.7.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- subgrounds/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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",