Skip to content

Commit

Permalink
Prepare for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Jun 1, 2016
1 parent 35b9ea7 commit c7a3ec0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Changelog
#########

0.3.1 (June 1, 2016)
====================

* Refactoring to make more generic (for potentially supporting multiple
templating engines).

0.3 (May 27, 2016)
==================

Expand Down
10 changes: 10 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,16 @@ There are also two additional errors that can be raised:
``UnsupportedEngine``
Raised if a template backend besides the Django backend is used.

Contributing
============

If you find a bug or have an idea for an improvement to Django Render Block,
please
`file an issue <https://github.com/clokep/django-render-block/issues/new>`_ or
provide a pull request! Check the
`list of issues <https://github.com/clokep/django-render-block/issues/>`_ for
ideas of what to work on.

Attribution
===========

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import codecs

from setuptools import setup
from setuptools import find_packages, setup


def long_description():
Expand All @@ -14,8 +14,8 @@ def long_description():

setup(
name='django-render-block',
py_modules=['render_block'],
version='0.3',
packages=find_packages(),
version='0.3.1',
description='Render a particular block from a template to a string.',
long_description=long_description(),
author='Patrick Cloke',
Expand Down

0 comments on commit c7a3ec0

Please sign in to comment.