From 71f8acf2a1668263e5161abf129c38bc34e78c67 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Tue, 23 Mar 2021 11:44:05 +0100 Subject: [PATCH] Updated CHANGELOG and version. --- CHANGELOG.md | 5 +++++ maintenance_mode/version.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d914e09..c796e7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.16.0](https://github.com/fabiocaccamo/django-maintenance-mode/releases/tag/0.16.0) - 2021-11-23 +- Added `maintenance_mode.backends.DefaultStorageBackend`. +- Added `maintenance_mode.logging.RequireNotMaintenanceMode503` logging filter. #72 +- Fixed leading `/` in `settings.MAINTENANCE_MODE_STATE_FILE_PATH`. #76 + ## [0.15.1](https://github.com/fabiocaccamo/django-maintenance-mode/releases/tag/0.15.1) - 2020-11-21 - Fixed state file content with extra white-space. #71 diff --git a/maintenance_mode/version.py b/maintenance_mode/version.py index ca1368b..fa66aaf 100644 --- a/maintenance_mode/version.py +++ b/maintenance_mode/version.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = '0.15.1' +__version__ = '0.16.0'