From dd3c857a1b571954e56542d9d1d229b785de7872 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 15 Mar 2023 00:39:11 +0000 Subject: [PATCH] 1.1.2 Automatically generated by python-semantic-release --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- subgrounds/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 963510c..bbc3074 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v1.1.2 (2023-03-15) +### Fix +* `Query.map` had no default value for `priority` ([#12](https://github.com/0xPlaygrounds/subgrounds/issues/12)) ([`82a5f29`](https://github.com/0xPlaygrounds/subgrounds/commit/82a5f293e4cf7398350d12e309cd3cff190c1318)) + +### Documentation +* Update README.md ([`dcea873`](https://github.com/0xPlaygrounds/subgrounds/commit/dcea87388020ef8465c0752e0ae79469d1f018e1)) +* Update design goals to features ([`6abecc6`](https://github.com/0xPlaygrounds/subgrounds/commit/6abecc68b3d9f573bf6feb6c14c0e0107fc7e8a7)) + ## v1.1.1 (2023-03-03) ### Fix * Bump version ([`40004c0`](https://github.com/0xPlaygrounds/subgrounds/commit/40004c012e474a32c94812576e24069c8a4c5d51)) diff --git a/pyproject.toml b/pyproject.toml index d576d54..f65c1dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "subgrounds" -version = "1.1.1" +version = "1.1.2" 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 b19f3a2..4e3a145 100644 --- a/subgrounds/__init__.py +++ b/subgrounds/__init__.py @@ -1,7 +1,7 @@ from subgrounds.subgraph import FieldPath, Subgraph, SyntheticField from subgrounds.subgrounds import Subgrounds -__version__ = "1.1.1" +__version__ = "1.1.2" __all__ = [ "FieldPath",