Skip to content

Commit 0c07322

Browse files
committed
1.6.0
Automatically generated by python-semantic-release
1 parent e44aee6 commit 0c07322

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
<!--next-version-placeholder-->
44

5+
## v1.6.0 (2023-05-25)
6+
### Feature
7+
* Add helpers for accessing the playgrounds gateway ([#21](https://github.com/0xPlaygrounds/subgrounds/issues/21)) ([`e44aee6`](https://github.com/0xPlaygrounds/subgrounds/commit/e44aee65649bff192321cfd82436b65da236d870))
8+
9+
### Documentation
10+
* Add open in colab button ([`02ff722`](https://github.com/0xPlaygrounds/subgrounds/commit/02ff7226e54920f411a9817f1eb26c757e4a2a32))
11+
* Add gateway notebook as another example ([`98eab32`](https://github.com/0xPlaygrounds/subgrounds/commit/98eab32d4bb9fcae072dcceefae94a8692e10852))
12+
* Adjust example notebook for colab ([`6210556`](https://github.com/0xPlaygrounds/subgrounds/commit/62105568b61c3a155ee07c6077b4b1e1d81f27fd))
13+
* Adjust wording in example notebook ([`357c6d8`](https://github.com/0xPlaygrounds/subgrounds/commit/357c6d859aea36d680cfde7d728a24a66ae67193))
14+
* Add example notebook + swap binder for colab ([`06cc728`](https://github.com/0xPlaygrounds/subgrounds/commit/06cc72860e2d83fc200b1198519da5963a85b0c1))
15+
* Add CI status badge to README.md ([`4c6dca9`](https://github.com/0xPlaygrounds/subgrounds/commit/4c6dca90174cbbfd990dbf7906bf75ee50f4d65a))
16+
* Broken link in README ([#19](https://github.com/0xPlaygrounds/subgrounds/issues/19)) ([`211f965`](https://github.com/0xPlaygrounds/subgrounds/commit/211f965331225fb7287cff027c5dd01e8a4e5784))
17+
518
## v1.5.2 (2023-05-17)
619
### Fix
720
* Nested orderBy working with DSL ([`7e320e8`](https://github.com/0xPlaygrounds/subgrounds/commit/7e320e8c77c12ad3fcfa64f3aad4428ad1068539))

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "subgrounds"
3-
version = "1.5.2"
3+
version = "1.6.0"
44
description = "A Pythonic data access layer for applications querying data from The Graph Network."
55
authors = [
66
"cvauclair <cvauclair@playgrounds.network>",

subgrounds/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from subgrounds.subgraph import FieldPath, Subgraph, SyntheticField
22
from subgrounds.subgrounds import Subgrounds
33

4-
__version__ = "1.5.2"
4+
__version__ = "1.6.0"
55

66
__all__ = [
77
"FieldPath",

0 commit comments

Comments
 (0)