Skip to content

1.6.0

Compare
Choose a tag to compare
@samuel-iseli samuel-iseli released this 14 May 08:38
· 17 commits to main since this release
5d0bc3c

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')),
]