From 35f95d37a2737d0d863da4ef85755d88fe42ad08 Mon Sep 17 00:00:00 2001 From: mjaworski Date: Wed, 30 Dec 2015 13:25:45 +0100 Subject: [PATCH] prepare new release * update `CREDITS` * update `UPDATES` * bump version to 1.5.0 --- CREDITS | 9 ++++++++- UPDATES | 32 +++++++++++++++++++++++++------- userena/__init__.py | 2 +- 3 files changed, 34 insertions(+), 9 deletions(-) diff --git a/CREDITS b/CREDITS index b5717974..276f1d7c 100644 --- a/CREDITS +++ b/CREDITS @@ -14,4 +14,11 @@ Ethno-urban: https://github.com/Ethno-urban (for updating documentation) Fabio Souto: http://fabiosouto.me/ (for updating documentation) ChangeSomeCode: https://github.com/ChangeSomeCode (for adding support for Django 1.7) Ghassen Telmoudi: https://github.com/pyghassen (for work on Python 3 support) -Leonardo Orozco: https://github.com/leonardoo (for work on Python 3 support) +Leonardo Orozco: https://github.com/leonardoo (for work on Python 3 support and multiple improvements) +Guillaume Thomas: https://github.com/gtnx (for various fixes) +Morten W. Hansen: https://github.com/mortenwh (for various fixes and translations) +wordstospend: https://github.com/wordstospend (for updating documentation) +Žan Anderle: https://github.com/zanderle (for improvements and compatibility fixes) +Alex Willmer: https://github.com/moreati (for fixing django 1.4 builds) +Andres Vargas: https://github.com/zodman (for fixing translations) +Angel Ramboi: https://github.com/aramboi (for Romanian translations) diff --git a/UPDATES b/UPDATES index 4ad5ebb3..f8b95ec8 100644 --- a/UPDATES +++ b/UPDATES @@ -4,6 +4,24 @@ This file contains all the backwards-incompatible (since 1.0.1) and other significant (since 1.4.1) changes. +## Version 1.5.0 + +Fixes and improvements: + +- Updated Norwegian translations and fixed issue with unicode characters sent + to `utils.generate_sha1` (#472) +- Fix `upload_to_mugshot` if model uses primary key diffrent than `id` (#475) +- Minor compatibility improvements (#485) +- Refactored mailer (#486) +- Password reset email now inlcudes email template for django>=1.7 (#493) +- Fixes to translations (#499) +- Added Romanian translations (#500) + + +Backwards incompatible changes: +- django-guardian has version fixed to `<=1.3.1` due to django 1.4 compatibility + + ## Version 1.4.1 Fixes and improvements: @@ -26,14 +44,14 @@ Fixes and improvements: ## Version 1.3.2 -Backwards incompatibile changes: +Backwards incompatible changes: - Creating new user always creates new empty userena profile (fixes bug from 1.3.1). ## Version 1.3.1 -Backwards incompatibile changes: +Backwards incompatible changes: - When USERENA_ACTIVATION_REQUIRED = False, creating new user does not automatically create userena profile (bug). @@ -41,7 +59,7 @@ Backwards incompatibile changes: ## Version 1.2.2 -Backwards incompatibile changes: +Backwards incompatible changes: - Changed backwards relationships names for Umessages contrib application from `to_user` to `um_to_user` and `from_user` to `um_from_user`. @@ -49,7 +67,7 @@ Backwards incompatibile changes: ## Version 1.2.0 -Backwards incompatibile changes: +Backwards incompatible changes: - This version updates Userena to be able to use the new `User` model found in Django 1.5. This does require the django-guardion > 1.5-dev. To make this @@ -59,7 +77,7 @@ Backwards incompatibile changes: ## Version 1.1.2 -Backwards incompatibile changes: +Backwards incompatible changes: - Activation view no longer contains username. If you override `userena/templates/userena/emails/activation_email_message.txt` and @@ -69,14 +87,14 @@ Backwards incompatibile changes: ## Version 1.1 -Backwards incompatibile changes: +Backwards incompatible changes: - Userena now requires Django >= 1.3 because of the use of class based views. ## Version 1.0.1 -Backwards incompatibile changes: +Backwards incompatible changes: - Removed the ``user`` relationship outside ``UserenaBaseProfile`` model. This allows the user to define it's own relationship and fixes a conflict while diff --git a/userena/__init__.py b/userena/__init__.py index bcaf133a..7e9948b8 100644 --- a/userena/__init__.py +++ b/userena/__init__.py @@ -4,7 +4,7 @@ """ default_app_config = 'userena.apps.UserenaConfig' -VERSION = (1, 4, 1) +VERSION = (1, 5, 0) __version__ = '.'.join((str(each) for each in VERSION[:4]))