Skip to content

Commit

Permalink
Merge pull request #80 from vintasoftware/release/1.2.0
Browse files Browse the repository at this point in the history
Release 1.2.0
  • Loading branch information
pamella authored May 27, 2024
2 parents e652c81 + b30b9ba commit 32a408d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,33 @@ Change Log
in this file. It adheres to the structure of http://keepachangelog.com/ ,
but in reStructuredText instead of Markdown (for ease of incorporation into
Sphinx documentation and the PyPI description).
This project adheres to Semantic Versioning (http://semver.org/).

.. There should always be an "Unreleased" section for changes pending release.
Unreleased
~~~~~~~~~~

[1.2.0] - 2024-05-27
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fixed
_____
* Fix a bug in the `get_serializer_class` method to return the appropriate serializer based on the request method, if any.

Removed
_______
* Drop support to Django 1.11
* Drop support to Django 2.0
* Drop support to Django 2.1
* Drop support to Django 2.2
* Drop support to Django 3.0
* Drop support to Django 3.1
* Drop support to Django 3.2
* Drop support to Django 4.0
* Drop support to Django 4.1
* Drop support to Python 3.7

[1.1.1] - 2024-02-07
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fixed
Expand Down
2 changes: 1 addition & 1 deletion drf_rw_serializers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from __future__ import absolute_import, unicode_literals

__version__ = "1.1.1"
__version__ = "1.2.0"

# pylint: disable=invalid-name
default_app_config = "drf_rw_serializers.apps.DrfRwSerializersConfig"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "drf-rw-serializers"
version = "1.1.1"
version = "1.2.0"
description = "Generic views, viewsets and mixins that extend the Django REST Framework ones adding separated serializers for read and write operations"
authors = ["Vinta Software <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 32a408d

Please sign in to comment.