1.6.0
Upgrade notes
This release of juntagrico-billing may only be used with juntagrico 1.6.x as there are some breaking changes that come with juntagrico 1.6.0.
It is recommended to reference this package with semantic versioning in requirements.txt
:
juntagrico-billing~=1.6.0
App reference in settings.py
In your settings.py
file you need to move juntagrico_billing
up, so it appears before juntagrico
.
INSTALLED_APPS = (
'juntagrico_billing',
'juntagrico',
...
)
Use new URL path pattern
Update your urls.py
to use the path
function instead of re_path
:
urlpatterns = [
...
path('', include('juntagrico_billing.urls')),
]