Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.1.0 release #133

Merged
merged 3 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,33 @@
Changelog
=========

Version 1.1.0 [unreleased]
Version 1.1.0 [2024-08-16]
--------------------------

WIP
Changes
~~~~~~~

- Use ``settings.DEFAULT_STORAGE_CLASS`` as base for OverwriteStorage,
adapting the storage backend to project settings.

**Dependencies:**

- Bumped ``django-leaflet~=0.30.1``
- Bumped ``Pillow~=10.4.0``
- Bumped ``geopy~=2.4.1``
- Bumped ``openwisp-utils~=1.1.0``
- Added support for Python ``3.10``.
- Added support for Django ``4.2``.
- Dropped support for Python ``3.7``.
- Dropped support for Django ``3.0.x``, ``3.1.x`` and ``4.0.x``.

Bugfixes
~~~~~~~~

- Fixed an issue with deleting ``FloorPlan.image`` by using the
appropriate storage backend method.
- Resolved a bug causing outdoor locations to incorrectly appear in the
location list when creating floorplans.

Version 1.0.1 [2022-04-20]
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion django_loci/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (1, 1, 0, 'alpha')
VERSION = (1, 1, 0, 'final')
__version__ = VERSION # alias


Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ pytest-django~=4.8.0
pytest-asyncio~=0.23.8
pytest-cov~=5.0.0
responses~=0.25.3
openwisp-utils[qa] @ https://github.com/openwisp/openwisp-utils/tarball/master
openwisp-utils[qa]~=1.1.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ channels~=3.0.4
django-leaflet~=0.30.1
Pillow~=10.4.0
geopy~=2.4.1
openwisp-utils @ https://github.com/openwisp/openwisp-utils/tarball/master
openwisp-utils~=1.1.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def get_install_requires():
zip_safe=False,
install_requires=get_install_requires(),
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable ',
'Environment :: Web Environment',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering :: GIS',
Expand Down