chore: bump v0.119 (#846)

This commit is contained in:
Juro Oravec 2024-12-13 10:02:01 +01:00 committed by GitHub
parent 87919e1163
commit aaeba99f54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 1 deletions

View file

@ -1,5 +1,19 @@
# Release notes # Release notes
## v0.119
#### Fix
- Fix compatibility with custom subclasses of Django's `Template` that need to access
`origin` or other initialization arguments. (https://github.com/EmilStenstrom/django-components/pull/828)
#### Refactor
- Compatibility with `django-debug-toolbar-template-profiler`:
- Monkeypatching of Django's `Template` now happens at `AppConfig.ready()` (https://github.com/EmilStenstrom/django-components/pull/825)
- Internal parsing of template tags tag was updated. No API change. (https://github.com/EmilStenstrom/django-components/pull/827)
## v0.118 ## v0.118
#### Feat #### Feat

View file

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "django_components" name = "django_components"
version = "0.118" version = "0.119"
requires-python = ">=3.8, <4.0" requires-python = ">=3.8, <4.0"
description = "A way to create simple reusable template components in Django." description = "A way to create simple reusable template components in Django."
keywords = ["django", "components", "css", "js", "html"] keywords = ["django", "components", "css", "js", "html"]