From 546e3f60ee157a495ea98001fc32b8b43197e8a1 Mon Sep 17 00:00:00 2001 From: Ali Date: Fri, 6 Apr 2018 18:27:57 +0300 Subject: [PATCH] change version schema to major.minor.patch --- README.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1a0be1c..4f4eaa3 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ pip install django-extra-fields Releases -------- -**1.0 (Latest version)** +**1.0.0 (Latest version)** - `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. diff --git a/setup.py b/setup.py index d6832db..d8e0bf7 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='django-extra-fields', - version='1.0', + version='1.0.0', packages=['drf_extra_fields', 'drf_extra_fields.runtests'], include_package_data=True,