Skip to content

Commit 0d62bba

Browse files
committed
v0.3.8
1 parent a64d586 commit 0d62bba

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,3 @@ __pycache__
2828

2929
.venv/
3030
.python-version
31-

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## v0.3
44

5+
### v0.3.8
6+
7+
- Add request and timestamp to email templates (thanks to [yanivtoledano](https://github.com/yanivtoledano))
8+
59
### v0.3.7
610

711
- Add template variables to email subjects.

docs/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## v0.3
44

5+
### v0.3.8
6+
7+
- Add request and timestamp to email templates (thanks to [yanivtoledano](https://github.com/yanivtoledano))
8+
59
### v0.3.7
610

711
- Add template variables to email subjects.

docs/overriding-email-templates.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ Both subject and email templates receive the following variables:
5454
- domain --> from [django sites framework](https://docs.djangoproject.com/en/3.0/ref/contrib/sites/) <small>(optional)</small>
5555
- protocol
5656
- path --> defined in [settings](settings.md) <small>(some frontend path)</small>
57+
- request
58+
- timestamp
5759

5860

5961
## Writing the templates

graphql_auth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.3.7"
1+
__version__ = "0.3.8"
22

33
default_app_config = "graphql_auth.apps.GraphQLAuthConfig"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def get_version(package):
4343
packages=find_packages(exclude=["tests*"]),
4444
install_requires=[
4545
"Django>=2.1.0",
46-
"django-graphql-jwt>=0.3.0",
46+
"django-graphql-jwt==0.3.0",
4747
"django-filter>=2.2.0",
4848
"graphene_django>=2.1.8",
4949
"graphene>=2.1.8",

0 commit comments

Comments
 (0)