Skip to content

Commit

Permalink
Version bump and slight doc changes for 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jjkester committed Dec 27, 2016
1 parent 0c8c189 commit 12d8c4d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
8 changes: 4 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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'),
]

Expand Down
8 changes: 8 additions & 0 deletions docs/source/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit 12d8c4d

Please sign in to comment.