chore(version): new version on setup

This commit is contained in:
Silvio Leite
2020-02-03 14:20:55 -03:00
2 changed files with 5 additions and 3 deletions

View File

@@ -2,8 +2,12 @@
from django.conf import settings
from django.shortcuts import resolve_url
from django.urls import get_script_prefix
from django.utils.functional import lazy
import os
# Lazy-evaluate URLs so including pwa.urls in root urlconf works
resolve_url = lazy(resolve_url, str)
# Get script prefix for apps not mounted under /
_PWA_SCRIPT_PREFIX = get_script_prefix()
@@ -102,5 +106,3 @@ PWA_APP_SPLASH_SCREEN = getattr(settings, 'PWA_APP_SPLASH_SCREEN', [
])
PWA_APP_DIR = getattr(settings, 'PWA_APP_DIR', 'auto')
PWA_APP_LANG = getattr(settings, 'PWA_APP_LANG', 'en-US')

View File

@@ -22,7 +22,7 @@ install_requirements = [
setup(
name='django-pwa',
version='1.0.7',
version='1.0.8',
packages=find_packages(),
install_requires=install_requirements,
include_package_data=True,