diff --git a/README.md b/README.md index 5589f36..9d1ae82 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,10 @@ Simple app containing a mixin model that integrates modeltranslation ## Release Notes +## v0.1.5 + +- Fixed required fields related bug + ## v0.1.4 - Support for wagtailsearch and wagtailsnippets diff --git a/setup.py b/setup.py index 657c585..c2ea19d 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='wagtail-modeltranslation', - version='0.1.4', + version='0.1.5', packages=['wagtail_modeltranslation'], include_package_data=True, license='BSD License', @@ -33,4 +33,4 @@ setup( 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], install_requires=['django-modeltranslation==0.9.1', 'wagtail'] -) \ No newline at end of file +)