From c91f84774b89c3d91429a61895a682f834b12057 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 10 Oct 2023 21:49:18 +0000 Subject: [PATCH] 1.8.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- subgrounds/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dcf329..058dfc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v1.8.0 (2023-10-10) + +### Feature + +* Pydantic upgrade to v2, maintaining V1 API internally ([#45](https://github.com/0xPlaygrounds/subgrounds/issues/45)) ([`25570ae`](https://github.com/0xPlaygrounds/subgrounds/commit/25570ae1f4d293f46312f195d5344473ad63e8fa)) +* Pandas upgrade to v2 ([#44](https://github.com/0xPlaygrounds/subgrounds/issues/44)) ([`5d1670b`](https://github.com/0xPlaygrounds/subgrounds/commit/5d1670bc1077c0f81fc2426e512118006f07f81b)) + ## v1.7.1 (2023-09-22) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 483065f..6daf7b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "subgrounds" -version = "1.7.1" +version = "1.8.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 508c489..e87aac9 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.7.1" +__version__ = "1.8.0" __all__ = [ "AsyncSubgrounds",