Skip to content

Commit 284a2d4

Browse files
committed
closes #95
1 parent 55f269a commit 284a2d4

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Brian Kohan
3+
Copyright (c) 2020-2023 Brian Kohan
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

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.1; 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.5
9+
django-render-static==1.1.6

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+
v1.1.6
6+
====================
7+
8+
* Fixed `LICENSE is packaged as source. <https://github.com/bckohan/django-render-static/issues/95>`_
9+
510
v1.1.5
611
====================
712

pyproject.toml

Lines changed: 2 additions & 4 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.5"
3+
version = "1.1.6"
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"
@@ -31,9 +31,7 @@ classifiers = [
3131
"Topic :: Software Development :: Libraries",
3232
"Topic :: Software Development :: Libraries :: Python Modules"
3333
]
34-
include = [
35-
"LICENSE",
36-
]
34+
3735
packages = [
3836
{ include = "render_static" }
3937
]

render_static/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from .resource import resource
1111
from .url_tree import ClassURLWriter, SimpleURLWriter, URLTreeVisitor
1212

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

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

0 commit comments

Comments
 (0)