Skip to content

Commit 55ed537

Browse files
committed
chore: bump version v0.2.6
1 parent 3d03915 commit 55ed537

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,5 @@ dmypy.json
131131
.pyre/
132132

133133
.idea
134-
.vscode
134+
.vscode
135+
*-e

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
VERSION ?= latest
2+
3+
bump:
4+
sed -i -e "s/__version__.*/__version__ = '${VERSION}'/g" gql/__init__.py
5+
poetry version -s ${VERSION}
6+

gql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
from .schema_visitor import SchemaDirectiveVisitor # noqa
1616
from .utils import gql # noqa
1717

18-
__version__ = '0.2.5'
18+
__version__ = '0.2.6'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-gql"
3-
version = "0.2.5"
3+
version = "0.2.6"
44
description = "Python schema-first GraphQL library based on GraphQL-core"
55
authors = ["ysun <sunyu418@gmail.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)