Skip to content

Commit c191c5d

Browse files
committed
fixes #123
1 parent 3ad60f4 commit c191c5d

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ sphinxcontrib-jsmath==1.0.1; python_version >= "3.5"
77
sphinxcontrib-qthelp==1.0.3; python_version >= "3.5"
88
sphinxcontrib-serializinghtml==1.1.5; python_version >= "3.5"
99
sphinx-js==3.2.2; python_version >= "3.5"
10-
django-render-static==2.0.1
10+
django-render-static==2.0.2

doc/source/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Change Log
33
==========
44

5+
v2.0.2
6+
======
7+
* Fixed `Dependency bug, for python < 3.9 importlib_resource req should simply be >=1.3 <https://github.com/bckohan/django-render-static/issues/123>`_
8+
9+
510
v2.0.1
611
======
712
* Fixed `enums_to_js allows 'name' property through even if it is excluded. <https://github.com/bckohan/django-render-static/issues/120>`_

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-render-static"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "Use Django's template engine to render static files at deployment or package time. Includes transpilers for extending Django's url reversal and enums to JavaScript."
55
authors = ["Brian Kohan <[email protected]>"]
66
license = "MIT"
@@ -50,7 +50,7 @@ Django = ">=3.2,<5.0"
5050
# { version = ">4.0.0,<4.1.0", python = ">=3.8,<3.11" },
5151
# { version = ">4.1.0", python = ">=3.8" }
5252
#]
53-
importlib-resources = { version = ">=1.3.0,<6.0.0", python = "<3.9" }
53+
importlib-resources = { version = ">=1.3.0", python = "<3.9" }
5454
Jinja2 = { version = ">=2.9,<4.0", optional = true }
5555
PyYAML = { version = ">=5.1,<7.0", optional = true }
5656

render_static/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from .transpilers.enums_to_js import EnumClassWriter
1515
from .transpilers.urls_to_js import ClassURLWriter, SimpleURLWriter
1616

17-
VERSION = (2, 0, 1)
17+
VERSION = (2, 0, 2)
1818

1919
__title__ = 'Django Render Static'
2020
__version__ = '.'.join(str(i) for i in VERSION)

0 commit comments

Comments
 (0)