Skip to content
This repository has been archived by the owner on Oct 22, 2019. It is now read-only.

Commit

Permalink
prepare new release
Browse files Browse the repository at this point in the history
* update `CREDITS`
* update `UPDATES`
* bump version to 1.5.0
  • Loading branch information
swistakm committed Dec 30, 2015
1 parent 0360912 commit 35f95d3
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 9 deletions.
9 changes: 8 additions & 1 deletion CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -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)
32 changes: 25 additions & 7 deletions UPDATES
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -26,30 +44,30 @@ 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).


## 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`.


## 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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion userena/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]))

Expand Down

0 comments on commit 35f95d3

Please sign in to comment.