From 30d37c5e96fcb15459f69ae1129e6e9bb0eb8154 Mon Sep 17 00:00:00 2001 From: Dani Sastre Date: Thu, 10 Aug 2023 09:51:01 +0200 Subject: [PATCH] Bump version --- django_yubin/version.py | 2 +- docs/changelog.rst | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/django_yubin/version.py b/django_yubin/version.py index fb2a5bf..3aee68c 100644 --- a/django_yubin/version.py +++ b/django_yubin/version.py @@ -1,2 +1,2 @@ -VERSION = (2, 0, 0) +VERSION = (2, 0, 1) __version__ = '.'.join([str(part) for part in VERSION]) diff --git a/docs/changelog.rst b/docs/changelog.rst index bb1e345..474d970 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,13 @@ This project adheres to `Semantic Versioning `_. +[2.0.1] - 2023-08-10 +-------------------- + +Changed +^^^^^^^ +* Ensure parsed e-mail message doesn't discard information (https://github.com/APSL/django-yubin/pull/67) + [2.0.0] - 2023-06-29 --------------------