Merge pull request #78 from jjkester/v0.4.1

Version bump and slight doc changes for 0.4.1
This commit is contained in:
Jan-Jelle Kester 2016-12-27 11:16:33 +01:00 committed by GitHub
commit 890dbb041b
3 changed files with 14 additions and 5 deletions

View file

@ -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 Djangos built in functionality to keep the list of dependencies as short as possible. Also, Auditlog aims to be fast and simple to use.

View file

@ -53,16 +53,16 @@ master_doc = 'index'
# 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 @@ man_pages = [
# 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'),
]

View file

@ -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.