Skip to content

Commit b587a01

Browse files
committed
bump version, update changelog
1 parent 401436c commit b587a01

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ sphinxcontrib-htmlhelp==2.0.0; python_version >= "3.5"
66
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"
9-
django-render-static==1.1.4
9+
django-render-static==1.1.5

doc/source/changelog.rst

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

5+
v1.1.5
6+
====================
7+
8+
* Fixed `Support python 3.11 <https://github.com/bckohan/django-render-static/issues/77>`_
9+
* Fixed `Drop support for python 3.6 <https://github.com/bckohan/django-render-static/issues/70>`_
10+
* Fixed `Upgrade build tooling to poetry 1.2 <https://github.com/bckohan/django-render-static/issues/69>`_
11+
512
v1.1.4
613
====================
714

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 = "1.1.4"
3+
version = "1.1.5"
44
description = "Use Django's template engine to render static files at deployment time. Extend Django's url reverse mechanism to JavaScript."
55
authors = ["Brian Kohan <[email protected]>"]
66
license = "MIT"
@@ -54,7 +54,7 @@ PyYAML = { version = ">=5.1,<7.0", optional = true }
5454
pytest = "^7.0"
5555
pytest-django = "^4.1.0"
5656
Sphinx = "^5.0.2"
57-
sphinx-rtd-theme = "^1.0.0"
57+
sphinx-rtd-theme = "^1.1.1"
5858
mypy = "^0.991"
5959
isort = "^5.6.4"
6060
doc8 = "^0.11.0"

render_static/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
from .resource import resource
1111
from .url_tree import ClassURLWriter, SimpleURLWriter, URLTreeVisitor
1212

13-
VERSION = (1, 1, 4)
13+
VERSION = (1, 1, 5)
1414

1515
__title__ = 'Django Render Static'
1616
__version__ = '.'.join(str(i) for i in VERSION)
1717
__author__ = 'Brian Kohan'
1818
__license__ = 'MIT'
19-
__copyright__ = 'Copyright 2020-2022 Brian Kohan'
19+
__copyright__ = 'Copyright 2020-2023 Brian Kohan'
2020

2121

2222
default_app_config = 'render_static.apps.RenderStaticConfig' # pylint: disable=C0103

0 commit comments

Comments
 (0)