From e5620d3ff85326cf443cf82d6d0c39e97b5d3811 Mon Sep 17 00:00:00 2001 From: Ali Date: Wed, 14 Aug 2019 18:06:36 +0300 Subject: [PATCH] bump version --- README.md | 33 --------------------------------- setup.py | 2 +- 2 files changed, 1 insertion(+), 34 deletions(-) diff --git a/README.md b/README.md index df8850c..9de8d8a 100644 --- a/README.md +++ b/README.md @@ -19,39 +19,6 @@ pip install django-extra-fields - Install version 0.1 for Django Rest Framework 2.* - Install version 0.3 or greater for Django Rest Framework 3.* - -Releases --------- - -**1.2.3 (Latest version)** - -- Added `presentation_serializer_kwargs` attribute to `PresentablePrimaryKeyRelatedField`. - -**1.2.2** - -- Fixed [a bug](https://github.com/Hipo/drf-extra-fields/pull/75) in Base64ImageField. -- Added codecov support. - -**1.2.1** - -- Moved filename generation of Base64FieldMixin into a method. - - -**1.2.0** - -- Properly handle blank image fields when `represent_in_base64` is enabled. - - -**1.1.0** - -- Python 3.7 support is added. - - -**1.0.0** - -- `PointField` is changed. The field now returns float coordinates instead of strings. It's a breaking change. If you want to return string coordinates add `str_points=True` as an argument. See [PointField](#pointfield) documentation for more details. - - Fields: ---------------- diff --git a/setup.py b/setup.py index 257e9a4..5db6375 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='django-extra-fields', - version='1.2.3', + version='1.2.4', packages=['drf_extra_fields', 'drf_extra_fields.runtests'], include_package_data=True,