Skip to content

Commit a637bd0

Browse files
committed
update changelog and classifiers #153
1 parent 552b7ae commit a637bd0

File tree

3 files changed

+41
-35
lines changed

3 files changed

+41
-35
lines changed

doc/source/changelog.rst

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

5-
v3.0.0
6-
======
5+
v3.0.0 (15-JUL-2024)
6+
====================
7+
8+
* Implemented `Support Django 5.1 <https://github.com/bckohan/django-render-static/issues/153>`_
9+
10+
v3.0.0 (07-JUN-2024)
11+
====================
712

813
* Implemented `Move tests into top level directory. <https://github.com/bckohan/django-render-static/issues/149>`_
914
* Implemented `Remove wrapped dependency required mishegoss and replace with jinja2 module level imports <https://github.com/bckohan/django-render-static/issues/148>`_
@@ -12,37 +17,37 @@ v3.0.0
1217
* Fixed `Support django-typer version 2.1 <https://github.com/bckohan/django-render-static/issues/144>`_
1318

1419

15-
v2.2.1
16-
======
20+
v2.2.1 (11-APR-2024)
21+
====================
1722

1823
* Fixed `Custom URL converts may expect reversal kwargs to be of a given type. <https://github.com/bckohan/django-render-static/issues/141>`_
1924
* Fixed `Switch README and CONTRIBUTING to markdown. <https://github.com/bckohan/django-render-static/issues/140>`_
2025

21-
v2.2.0
22-
======
26+
v2.2.0 (27-FEB-2024)
27+
====================
2328

2429
* Implemented `Refactor renderstatic command using TyperCommand <https://github.com/bckohan/django-render-static/issues/137>`_
2530
* Implemented `Allow enum class writer to_string parameter to be the name of a property to return from toString() <https://github.com/bckohan/django-render-static/issues/132>`_
2631

27-
v2.1.3
28-
======
32+
v2.1.3 (12-DEC-2023)
33+
====================
2934

3035
* Fixed `Support Django 5.0 <https://github.com/bckohan/django-render-static/issues/136>`_
3136

3237

33-
v2.1.2
34-
======
38+
v2.1.2 (21-NOV-2023)
39+
====================
3540

3641
* Fixed `deepEqual should only be included by ClassURLWriter when Django version is less than 4.1 <https://github.com/bckohan/django-render-static/issues/134>`_
3742
* Fixed `deepEqual generated code in ClassURLWriter has an error <https://github.com/bckohan/django-render-static/issues/133>`_
3843

39-
v2.1.1
40-
======
44+
v2.1.1 (20-NOV-2023)
45+
====================
4146

4247
* Fixed `include_properties can result in non-deterministic ordering of constructor parameters that changes render to render <https://github.com/bckohan/django-render-static/issues/131>`_
4348

44-
v2.1.0
45-
======
49+
v2.1.0 (20-NOV-2023)
50+
====================
4651
* Implemented `Support templating of destination paths. <https://github.com/bckohan/django-render-static/issues/129>`_
4752
* Implemented `Support configurable case insensitive property mapping on enum transpilation. <https://github.com/bckohan/django-render-static/issues/128>`_
4853
* Implemented `Add a pass through getter for enums_to_js transpilation. <https://github.com/bckohan/django-render-static/issues/126>`_
@@ -52,23 +57,23 @@ v2.1.0
5257
* Implemented `Allow include_properties to be a list of properties on enums_to_js <https://github.com/bckohan/django-render-static/issues/119>`_
5358
* Implemented `Extension points for transpiled code. <https://github.com/bckohan/django-render-static/issues/104>`_
5459

55-
v2.0.3
56-
======
60+
v2.0.3 (09-NOV-2023)
61+
====================
5762
* Fixed `Invalid URL generation for urls with default arguments. <https://github.com/bckohan/django-render-static/issues/124>`_
5863

5964

60-
v2.0.2
61-
======
65+
v2.0.2 (26-OCT-2023)
66+
====================
6267
* Fixed `Dependency bug, for python < 3.9 importlib_resource req should simply be >=1.3 <https://github.com/bckohan/django-render-static/issues/123>`_
6368

6469

65-
v2.0.1
66-
======
70+
v2.0.1 (24-OCT-2023)
71+
====================
6772
* Fixed `enums_to_js allows 'name' property through even if it is excluded. <https://github.com/bckohan/django-render-static/issues/120>`_
6873

6974

70-
v2.0.0
71-
======
75+
v2.0.0 (21-OCT-2023)
76+
====================
7277

7378
**This is a major version upgrade - please see migration guide for instructions
7479
on how to** :doc:`migration` **from version 1.x to 2.x.**
@@ -101,40 +106,40 @@ on how to** :doc:`migration` **from version 1.x to 2.x.**
101106
* Fixed `Multilevel url arguments not working <https://github.com/bckohan/django-render-static/issues/13>`_
102107
* Implemented `Enum support <https://github.com/bckohan/django-render-static/issues/4>`_
103108

104-
v1.1.6
109+
v1.1.6 (15-FEB-2023)
105110
====================
106111

107112
* Fixed `LICENSE is packaged as source. <https://github.com/bckohan/django-render-static/issues/95>`_
108113

109-
v1.1.5
114+
v1.1.5 (16-JAN-2023)
110115
====================
111116

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

116-
v1.1.4
121+
v1.1.4 (20-AUG-2022)
117122
====================
118123

119124
* Fixed `urls_to_js output is incorrect when default kwargs specified in path() <https://github.com/bckohan/django-render-static/issues/65>`_
120125

121-
v1.1.3
126+
v1.1.3 (18-JAN-2022)
122127
====================
123128

124129
* Fixed `Django4.0 Support <https://github.com/bckohan/django-render-static/issues/45>`_
125130

126-
v1.1.2
131+
v1.1.2 (08-OCT-2021)
127132
====================
128133

129134
* Fixed `Jinja2 include breaks Jinja2 as optional dependency <https://github.com/bckohan/django-render-static/issues/34>`_
130135

131-
v1.1.1
136+
v1.1.1 (12-JUL-2021)
132137
====================
133138

134139
* Support for Jinja2 3.0
135140
* Improved importlib.resources inclusion logic
136141

137-
v1.1.0
142+
v1.1.0 (12-JUN-2021)
138143
====================
139144

140145
* Added `Support batch rendering & glob patterns in template selectors <https://github.com/bckohan/django-render-static/issues/15>`_
@@ -144,14 +149,14 @@ v1.1.0
144149
* Added `Add GET query parameters to ClassURLWriter's reverse function <https://github.com/bckohan/django-render-static/issues/12>`_
145150

146151

147-
v1.0.1
152+
v1.0.1 (24-APR-2021)
148153
====================
149154

150155
* Fixed `Bound complexity of URL Generation <https://github.com/bckohan/django-render-static/issues/10>`_
151156
* Fixed `Unnamed/named urls of the same name sometimes fail <https://github.com/bckohan/django-render-static/issues/9>`_
152157
* Fixed `Default placeholders not activated <https://github.com/bckohan/django-render-static/issues/8>`_
153158

154-
v1.0.0
159+
v1.0.0 (21-APR-2021)
155160
====================
156161

157162
* New abstract visitor pattern allows customization of generated URL resolution javascript
@@ -164,13 +169,13 @@ v1.0.0
164169
* API is now considered production/stable.
165170

166171

167-
v0.1.1
172+
v0.1.1 (02-MAR-2021)
168173
====================
169174

170175
* Added common placeholders, and placeholders for allauth and DRF
171176

172177

173-
v0.1.0
178+
v0.1.0 (24-FEB-2021)
174179
====================
175180

176181
* Initial Release

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-render-static"
3-
version = "3.0.0"
3+
version = "3.0.1"
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"
@@ -19,6 +19,7 @@ classifiers = [
1919
"Framework :: Django :: 4.1",
2020
"Framework :: Django :: 4.2",
2121
"Framework :: Django :: 5.0",
22+
"Framework :: Django :: 5.1",
2223
"Intended Audience :: Developers",
2324
"License :: OSI Approved :: MIT License",
2425
"Natural Language :: English",

render_static/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
"""
99

10-
VERSION = (3, 0, 0)
10+
VERSION = (3, 0, 1)
1111

1212
__title__ = "Django Render Static"
1313
__version__ = ".".join(str(i) for i in VERSION)

0 commit comments

Comments
 (0)