diff --git a/CHANGES.rst b/CHANGES.rst index b96630e..8b29769 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,17 @@ Changelog .. towncrier release notes start +4.3.0 (2021-09-01) +------------------ + +New features: + + +- Add new ``StaticCatalogVocabulary`` class providing a simplified mechanism for + creating queryable content vocabularies. Allows use of e.g. AJAXSelectWidget for + fields that store Relations or UUIDs. (#66) + + 4.2.2 (2021-02-16) ------------------ diff --git a/news/66.feature b/news/66.feature deleted file mode 100644 index 41cf57f..0000000 --- a/news/66.feature +++ /dev/null @@ -1,3 +0,0 @@ -Add new ``StaticCatalogVocabulary`` class providing a simplified mechanism for -creating queryable content vocabularies. Allows use of e.g. AJAXSelectWidget for -fields that store Relations or UUIDs. \ No newline at end of file diff --git a/setup.py b/setup.py index 9e899d8..dcd60fb 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup -version = '4.3.0.dev0' +version = '4.3.0' setup( name='plone.app.vocabularies',