From ddaee43a5a5d6f45da3d7a5cecaf260800713a73 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 7 Apr 2023 18:51:52 +0000 Subject: [PATCH] 1.3.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 11 +++++++++++ pyproject.toml | 2 +- subgrounds/__init__.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9a4cff..42db726 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ +## v1.3.0 (2023-04-07) +### Feature +* Add specific error models ([`6218076`](https://github.com/0xPlaygrounds/subgrounds/commit/621807602c3467a3e729541f645d992d3e5b6297)) +* Add user-agent to headers ([`41dbaf6`](https://github.com/0xPlaygrounds/subgrounds/commit/41dbaf6443ad604665ad5412d4b2c6bd3d3cdeb4)) +* Add headers to Subgrounds ([`80d6c20`](https://github.com/0xPlaygrounds/subgrounds/commit/80d6c208dd2fa624f7033f60217f6de85fcb4099)) + +### Fix +* Better defined error models ([`c121132`](https://github.com/0xPlaygrounds/subgrounds/commit/c1211328bbd4db00ec981f1cf167bd88d62cc94b)) +* Adjust error models + fix typos ([`fa853d7`](https://github.com/0xPlaygrounds/subgrounds/commit/fa853d70e9fe388b025410314baabc7e8447485d)) +* Default header as a function to avoid circular imports ([`1f2f8f6`](https://github.com/0xPlaygrounds/subgrounds/commit/1f2f8f6d10a115c596fe938b983f86e865711bd7)) + ## v1.2.0 (2023-04-02) ### Feature * Headers Support ([#13](https://github.com/0xPlaygrounds/subgrounds/issues/13)) ([`8ff3c04`](https://github.com/0xPlaygrounds/subgrounds/commit/8ff3c040a2c8c205b31566f1135e38a3c84293b2)) diff --git a/pyproject.toml b/pyproject.toml index d0691a7..7443c7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "subgrounds" -version = "1.2.0" +version = "1.3.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 55c2320..fbfa0ae 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.2.0" +__version__ = "1.3.0" __all__ = [ "FieldPath",