From 12d8c4d84d1ffd95e0ca19c951dd9a60bb1eab60 Mon Sep 17 00:00:00 2001 From: Jan-Jelle Kester Date: Tue, 27 Dec 2016 11:08:12 +0100 Subject: [PATCH] Version bump and slight doc changes for 0.4.1 --- README.md | 3 ++- docs/source/conf.py | 8 ++++---- docs/source/usage.rst | 8 ++++++++ 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b3f5fa77..ed51710c 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,8 @@ django-auditlog [![Build Status](https://travis-ci.org/jjkester/django-auditlog.svg?branch=master)](https://travis-ci.org/jjkester/django-auditlog) [![Docs](https://readthedocs.org/projects/django-auditlog/badge/?version=latest)](http://django-auditlog.readthedocs.org/en/latest/?badge=latest) -**Please remember that this app is still in development and not yet suitable for production environments.** +**Please remember that this app is still in development.** +**Test this app before deploying it in production environments.** ```django-auditlog``` (Auditlog) is a reusable app for Django that makes logging object changes a breeze. Auditlog tries to use as much as Python and Django’s built in functionality to keep the list of dependencies as short as possible. Also, Auditlog aims to be fast and simple to use. diff --git a/docs/source/conf.py b/docs/source/conf.py index 18d6bbb0..a6137b96 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -53,16 +53,16 @@ # General information about the project. project = u'django-auditlog' -copyright = u'2015, Jan-Jelle Kester' +copyright = u'2017, Jan-Jelle Kester' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.3' +version = '0.4' # The full version, including alpha/beta/rc tags. -release = '0.4.0' +release = '0.4.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -250,7 +250,7 @@ # dir menu entry, description, category) texinfo_documents = [ ('index', 'django-auditlog', u'django-auditlog Documentation', - u'Jan-Jelle Kester', 'django-auditlog', 'One line description of project.', + u'Jan-Jelle Kester', 'django-auditlog', '', 'Miscellaneous'), ] diff --git a/docs/source/usage.rst b/docs/source/usage.rst index 1d066582..7b659a03 100644 --- a/docs/source/usage.rst +++ b/docs/source/usage.rst @@ -135,3 +135,11 @@ input. .. warning:: Using the ``auditlogflush`` command deletes all log entries permanently and irreversibly from the database. + +Django Admin integration +------------------------ + +.. versionadded:: 0.4.1 + +When ``auditlog`` is added to your ``INSTALLED_APPS`` setting a customized admin class is active providing an enhanced +Django Admin interface for log entries.