Skip to content

Commit

Permalink
bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Jan 16, 2023
1 parent 401436c commit b587a01
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ sphinxcontrib-htmlhelp==2.0.0; python_version >= "3.5"
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"
django-render-static==1.1.4
django-render-static==1.1.5
7 changes: 7 additions & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Change Log
==========

v1.1.5
====================

* Fixed `Support python 3.11 <https://github.com/bckohan/django-render-static/issues/77>`_
* Fixed `Drop support for python 3.6 <https://github.com/bckohan/django-render-static/issues/70>`_
* Fixed `Upgrade build tooling to poetry 1.2 <https://github.com/bckohan/django-render-static/issues/69>`_

v1.1.4
====================

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-render-static"
version = "1.1.4"
version = "1.1.5"
description = "Use Django's template engine to render static files at deployment time. Extend Django's url reverse mechanism to JavaScript."
authors = ["Brian Kohan <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -54,7 +54,7 @@ PyYAML = { version = ">=5.1,<7.0", optional = true }
pytest = "^7.0"
pytest-django = "^4.1.0"
Sphinx = "^5.0.2"
sphinx-rtd-theme = "^1.0.0"
sphinx-rtd-theme = "^1.1.1"
mypy = "^0.991"
isort = "^5.6.4"
doc8 = "^0.11.0"
Expand Down
4 changes: 2 additions & 2 deletions render_static/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
from .resource import resource
from .url_tree import ClassURLWriter, SimpleURLWriter, URLTreeVisitor

VERSION = (1, 1, 4)
VERSION = (1, 1, 5)

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


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

0 comments on commit b587a01

Please sign in to comment.