diff --git a/doc/requirements.txt b/doc/requirements.txt index cdc261d..d79d31f 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -7,4 +7,4 @@ sphinxcontrib-jsmath==1.0.1; python_version >= "3.5" sphinxcontrib-qthelp==1.0.3; python_version >= "3.5" sphinxcontrib-serializinghtml==1.1.5; python_version >= "3.5" sphinx-js==3.2.2; python_version >= "3.5" -django-render-static==2.0.1 +django-render-static==2.0.2 diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 37092d6..d4ca6f6 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -2,6 +2,11 @@ Change Log ========== +v2.0.2 +====== +* Fixed `Dependency bug, for python < 3.9 importlib_resource req should simply be >=1.3 `_ + + v2.0.1 ====== * Fixed `enums_to_js allows 'name' property through even if it is excluded. `_ diff --git a/pyproject.toml b/pyproject.toml index 07d8ede..bfd9362 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-render-static" -version = "2.0.1" +version = "2.0.2" 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." authors = ["Brian Kohan "] license = "MIT" @@ -50,7 +50,7 @@ Django = ">=3.2,<5.0" # { version = ">4.0.0,<4.1.0", python = ">=3.8,<3.11" }, # { version = ">4.1.0", python = ">=3.8" } #] -importlib-resources = { version = ">=1.3.0,<6.0.0", python = "<3.9" } +importlib-resources = { version = ">=1.3.0", python = "<3.9" } Jinja2 = { version = ">=2.9,<4.0", optional = true } PyYAML = { version = ">=5.1,<7.0", optional = true } diff --git a/render_static/__init__.py b/render_static/__init__.py index 75cd808..db50b02 100755 --- a/render_static/__init__.py +++ b/render_static/__init__.py @@ -14,7 +14,7 @@ from .transpilers.enums_to_js import EnumClassWriter from .transpilers.urls_to_js import ClassURLWriter, SimpleURLWriter -VERSION = (2, 0, 1) +VERSION = (2, 0, 2) __title__ = 'Django Render Static' __version__ = '.'.join(str(i) for i in VERSION)