diff --git a/CHANGELOG.md b/CHANGELOG.md index a60dc35..a9a4cff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## 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)) + +### Documentation +* Fix changelog formatting ([`7f8a630`](https://github.com/0xPlaygrounds/subgrounds/commit/7f8a6302871387042ffa0ea323284832f2611ea7)) + ## 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)) diff --git a/pyproject.toml b/pyproject.toml index fadf5fa..d0691a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "subgrounds" -version = "1.1.2" +version = "1.2.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 4e3a145..55c2320 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.2" +__version__ = "1.2.0" __all__ = [ "FieldPath",