diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e3bb39..15950e8 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.0](https://github.com/fabiocaccamo/django-colorfield/releases/tag/0.3.0) - 2020-04-07 +- Fixed `default`, `blank` and `null` attrs support. #53 #54 +- Fixed `jscolor` not working on inlines added dynamically (only when `extra=0`) + ## [0.2.2](https://github.com/fabiocaccamo/django-colorfield/releases/tag/0.2.2) - 2020-04-02 - Fixed colopicker not working on inlines added dynamically (only when `jquery` is loaded by the browser after `colorfield`). #52 diff --git a/colorfield/version.py b/colorfield/version.py index 3156efb..e8e4b94 100644 --- a/colorfield/version.py +++ b/colorfield/version.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = '0.2.2' +__version__ = '0.3.0'