Skip to content
This repository has been archived by the owner on Jun 29, 2019. It is now read-only.

Commit

Permalink
Merge tag '0.2.0' into develop
Browse files Browse the repository at this point in the history
0.2.0
  • Loading branch information
eliostvs committed Aug 12, 2014
2 parents b54bdb5 + 3c32467 commit 1d9aa59
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0

[bumpversion:file:setup.py]

[bumpversion:file:kb/__init__.py]

6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
History
-------

0.2.0 (2014-11-05)
++++++++++++++++++
* Add pagination in TagListView and CategoryDetailView.
* Improve admin options.


0.1.0 (2014-08-05)
++++++++++++++++++

Expand Down
8 changes: 7 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,11 @@ This is an inclusion tag which renders links to upvote or downvote the article.
To support AJAX you need to load jQuery and the ``feedback.js`` in your template, i.e.::

{% load staticfiles %}
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="{% static "kb/js/feedback.js" %}"></script>


Example
-------

Example of the app django-kb running on Openshift `here <https://github.com/eliostvs/django-kb-example>`_.
2 changes: 1 addition & 1 deletion kb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import unicode_literals

__version__ = '0.1.0'
__version__ = '0.2.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='django-kb',
version='0.1.0',
version='0.2.0',
description='Simple knowledge base made with django',
long_description=readme + '\n\n' + history,
author='Elio Esteves Duarte',
Expand Down

0 comments on commit 1d9aa59

Please sign in to comment.