From cc65633ecae21028922047bec05cf67002965bab Mon Sep 17 00:00:00 2001 From: Jakub Dubec Date: Mon, 11 May 2020 13:06:09 +0200 Subject: [PATCH] =?UTF-8?q?0.9.0=20release=20=F0=9F=8F=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +-- README.md | 2 +- django_api_forms/version.py | 2 +- poetry.lock | 6 +++--- pyproject.toml | 4 ++-- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fe667c..5ab9029 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,11 @@ # Changelog -## 0.9.0 : TBD +## 0.9.0 : 11.05.2020 - **Change**: Moved field error messages to default_error_messages for easier overriding and testing. - **Fix**: Fix KeyError when invalid values are sent to FieldList. - **Fix**: Removed unnecessary error checking in FieldList. - ## 0.8.0 : 05.05.2020 - **Maintenance**: Add tests for fields diff --git a/README.md b/README.md index 8b462d1..ac4a9db 100644 --- a/README.md +++ b/README.md @@ -165,7 +165,7 @@ def create_album(request): print(payload) ``` -If you want example with whole Django project, check out repository created by @pawl +If you want example with whole Django project, check out repository created by [pawl](https://github.com/pawl) [django_api_forms_modelchoicefield_example](https://github.com/pawl/django_api_forms_modelchoicefield_example), where he uses library with [ModelChoiceField](https://docs.djangoproject.com/en/3.0/ref/forms/fields/#django.forms.ModelChoiceField). diff --git a/django_api_forms/version.py b/django_api_forms/version.py index 32a90a3..e4e49b3 100644 --- a/django_api_forms/version.py +++ b/django_api_forms/version.py @@ -1 +1 @@ -__version__ = '0.8.0' +__version__ = '0.9.0' diff --git a/poetry.lock b/poetry.lock index 5462e98..f73840b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -335,7 +335,7 @@ description = "pytest: simple powerful testing with Python" name = "pytest" optional = false python-versions = ">=3.5" -version = "5.4.1" +version = "5.4.2" [package.dependencies] atomicwrites = ">=1.0" @@ -788,8 +788,8 @@ pyparsing = [ {file = "pyparsing-2.4.7.tar.gz", hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"}, ] pytest = [ - {file = "pytest-5.4.1-py3-none-any.whl", hash = "sha256:0e5b30f5cb04e887b91b1ee519fa3d89049595f428c1db76e73bd7f17b09b172"}, - {file = "pytest-5.4.1.tar.gz", hash = "sha256:84dde37075b8805f3d1f392cc47e38a0e59518fb46a431cfdaf7cf1ce805f970"}, + {file = "pytest-5.4.2-py3-none-any.whl", hash = "sha256:95c710d0a72d91c13fae35dce195633c929c3792f54125919847fdcdf7caa0d3"}, + {file = "pytest-5.4.2.tar.gz", hash = "sha256:eb2b5e935f6a019317e455b6da83dd8650ac9ffd2ee73a7b657a30873d67a698"}, ] pytest-cov = [ {file = "pytest-cov-2.8.1.tar.gz", hash = "sha256:cc6742d8bac45070217169f5f72ceee1e0e55b0221f54bcf24845972d3a47f2b"}, diff --git a/pyproject.toml b/pyproject.toml index aa13267..b12765a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [tool.poetry] name = "django-api-forms" -version = "0.7.1" +version = "0.9.0" description = "Declarative Django request validation" -authors = ["Jakub Dubec "] +authors = ["Jakub Dubec ", "Paul Brown "] license = "MIT" [tool.poetry.dependencies]