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

Commit 35f95d3

Browse files
committed
prepare new release
* update `CREDITS` * update `UPDATES` * bump version to 1.5.0
1 parent 0360912 commit 35f95d3

File tree

3 files changed

+34
-9
lines changed

3 files changed

+34
-9
lines changed

CREDITS

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,11 @@ Ethno-urban: https://github.com/Ethno-urban (for updating documentation)
1414
Fabio Souto: http://fabiosouto.me/ (for updating documentation)
1515
ChangeSomeCode: https://github.com/ChangeSomeCode (for adding support for Django 1.7)
1616
Ghassen Telmoudi: https://github.com/pyghassen (for work on Python 3 support)
17-
Leonardo Orozco: https://github.com/leonardoo (for work on Python 3 support)
17+
Leonardo Orozco: https://github.com/leonardoo (for work on Python 3 support and multiple improvements)
18+
Guillaume Thomas: https://github.com/gtnx (for various fixes)
19+
Morten W. Hansen: https://github.com/mortenwh (for various fixes and translations)
20+
wordstospend: https://github.com/wordstospend (for updating documentation)
21+
Žan Anderle: https://github.com/zanderle (for improvements and compatibility fixes)
22+
Alex Willmer: https://github.com/moreati (for fixing django 1.4 builds)
23+
Andres Vargas: https://github.com/zodman (for fixing translations)
24+
Angel Ramboi: https://github.com/aramboi (for Romanian translations)

UPDATES

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ This file contains all the backwards-incompatible (since 1.0.1) and other
44
significant (since 1.4.1) changes.
55

66

7+
## Version 1.5.0
8+
9+
Fixes and improvements:
10+
11+
- Updated Norwegian translations and fixed issue with unicode characters sent
12+
to `utils.generate_sha1` (#472)
13+
- Fix `upload_to_mugshot` if model uses primary key diffrent than `id` (#475)
14+
- Minor compatibility improvements (#485)
15+
- Refactored mailer (#486)
16+
- Password reset email now inlcudes email template for django>=1.7 (#493)
17+
- Fixes to translations (#499)
18+
- Added Romanian translations (#500)
19+
20+
21+
Backwards incompatible changes:
22+
- django-guardian has version fixed to `<=1.3.1` due to django 1.4 compatibility
23+
24+
725
## Version 1.4.1
826

927
Fixes and improvements:
@@ -26,30 +44,30 @@ Fixes and improvements:
2644

2745
## Version 1.3.2
2846

29-
Backwards incompatibile changes:
47+
Backwards incompatible changes:
3048

3149
- Creating new user always creates new empty userena profile (fixes bug from 1.3.1).
3250

3351

3452
## Version 1.3.1
3553

36-
Backwards incompatibile changes:
54+
Backwards incompatible changes:
3755

3856
- When USERENA_ACTIVATION_REQUIRED = False, creating new user does not automatically
3957
create userena profile (bug).
4058

4159

4260
## Version 1.2.2
4361

44-
Backwards incompatibile changes:
62+
Backwards incompatible changes:
4563

4664
- Changed backwards relationships names for Umessages contrib application from
4765
`to_user` to `um_to_user` and `from_user` to `um_from_user`.
4866

4967

5068
## Version 1.2.0
5169

52-
Backwards incompatibile changes:
70+
Backwards incompatible changes:
5371

5472
- This version updates Userena to be able to use the new `User` model found in
5573
Django 1.5. This does require the django-guardion > 1.5-dev. To make this
@@ -59,7 +77,7 @@ Backwards incompatibile changes:
5977

6078
## Version 1.1.2
6179

62-
Backwards incompatibile changes:
80+
Backwards incompatible changes:
6381

6482
- Activation view no longer contains username. If you override
6583
`userena/templates/userena/emails/activation_email_message.txt` and
@@ -69,14 +87,14 @@ Backwards incompatibile changes:
6987

7088
## Version 1.1
7189

72-
Backwards incompatibile changes:
90+
Backwards incompatible changes:
7391

7492
- Userena now requires Django >= 1.3 because of the use of class based views.
7593

7694

7795
## Version 1.0.1
7896

79-
Backwards incompatibile changes:
97+
Backwards incompatible changes:
8098

8199
- Removed the ``user`` relationship outside ``UserenaBaseProfile`` model. This
82100
allows the user to define it's own relationship and fixes a conflict while

userena/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55
default_app_config = 'userena.apps.UserenaConfig'
66

7-
VERSION = (1, 4, 1)
7+
VERSION = (1, 5, 0)
88

99
__version__ = '.'.join((str(each) for each in VERSION[:4]))
1010

0 commit comments

Comments
 (0)