Release version 0.17.

This commit is contained in:
Emil Stenström 2021-09-10 13:32:11 +02:00
parent b7486cae89
commit c9f0068741
2 changed files with 5 additions and 1 deletions

View file

@ -18,6 +18,10 @@ And this is what gets rendered (plus the CSS and Javascript you've specified):
Read on to learn about the details!
# Release notes
*Version 0.17* renames `Component.context` and `Component.template` to `get_context_data` and `get_template_name`. The old methods still work, but emit a deprecation warning. This change was done to sync naming with Django's class based views, and make using django-components more familiar to Django users. `Component.context` and `Component.template` will be removed when version 1.0 is released.
# Installation
Install the app into your environment:

View file

@ -3,7 +3,7 @@ import os
from setuptools import find_packages, setup
VERSION = "0.16"
VERSION = '0.17'
setup(
name="django_components",