Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hartungstenio committed Dec 20, 2022
1 parent 4eb4ae6 commit d7259d9
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 16 deletions.
31 changes: 19 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@
- Option `Oritentation` on manifest.json
- tox.ini
- Coverage


## 1.0.1

### Added
- Add django 2 requirement
- Use templateviews instead of own implementations
- Add content_types
- Update `README.md`
- Add `PWA_APP_FETCH_URL`
- Add `PWA_APP_FETCH_URL`
- Add default_config in `__init__.py`
- Add basic serviceworker
- Add default offline page and default icons
### Changed
- Updated the unit tests

## 1.0.2

### Fixed
- Fix tox.ini to install pypandoc
### Added
Expand All @@ -42,19 +42,19 @@
### Changed
- Update `CHANGELOG.md`
- Update `README.md`

## 1.0.3

### Fixed
- Restored support to oldest Django versions

## 1.0.4

### Fixed
- Fix problem of multiple service workers being registered over multiple URLs

## 1.0.5

### Added
- Updated manifest.json by adding scope parameter.
- Updated serviceworker.js add scope dynamic parameter
Expand All @@ -65,3 +65,10 @@
- Fix PWA if app is not mounted in root of webserver
### Added
- Allow use of view names in PWA_APP_SCOPE, PWA_START_URL, PWA_APP_FETCH_URL and PWA_APP_ROOT

## 1.1.0

### Added
- Support for Django 4.0+
### Removed
- Drop support for Django 1.8
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os

from setuptools import find_packages, setup

short_description = 'A Django app to include a manifest.json and Service Worker instance to enable progressive web ' \
Expand All @@ -15,12 +16,12 @@
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

install_requirements = [
"django>=1.8",
"django>=2.0",
]

setup(
name='django-pwa',
version='1.0.10',
version='1.1.0',
packages=find_packages(),
install_requires=install_requirements,
include_package_data=True,
Expand All @@ -34,13 +35,16 @@
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
Expand All @@ -54,4 +58,4 @@
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)
)

0 comments on commit d7259d9

Please sign in to comment.