diff --git a/CHANGES.rst b/CHANGES.rst index da9faa1..e3d22bd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,23 @@ Changelog .. towncrier release notes start +3.2.0 (2019-04-29) +------------------ + +New features: + + +- Index/reindex/unindex the comment itself, do not defer to ``ICommentingTool``. + This way it can be integrated into collective.indexing and Solr (or any other indexing tool). + [gforcada] (#77) + + +Bug fixes: + + +- Fixed DeprecationWarning for ObjectEvent. [jensens] (#153) + + 3.1.1 (2019-02-08) ------------------ diff --git a/news/153.bugfix b/news/153.bugfix deleted file mode 100644 index bf2a486..0000000 --- a/news/153.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed DeprecationWarning for ObjectEvent. [jensens] \ No newline at end of file diff --git a/news/77.feature b/news/77.feature deleted file mode 100644 index b03dc48..0000000 --- a/news/77.feature +++ /dev/null @@ -1,3 +0,0 @@ -Index/reindex/unindex the comment itself, do not defer to ``ICommentingTool``. -This way it can be integrated into collective.indexing and Solr (or any other indexing tool). -[gforcada] diff --git a/setup.py b/setup.py index 52501ab..1d9ae8f 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import find_packages from setuptools import setup -version = '3.1.2.dev0' +version = '3.2.0' install_requires = [ 'setuptools',