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
* bump version
* reformat UPDATES so it tracks also other significant changes since (1.4.1)
* add @leonardoo to CREDITS
  • Loading branch information
Michał Jaworski committed Feb 24, 2015
1 parent 247682c commit 1b84156
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 14 deletions.
1 change: 1 addition & 0 deletions CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ 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)
66 changes: 53 additions & 13 deletions UPDATES
Original file line number Diff line number Diff line change
@@ -1,42 +1,82 @@
This file contains all the backwards-incompatible changes.
# UPDATES

Version 1.4.0
This file contains all the backwards-incompatible (since 1.0.1) and other
significant (since 1.4.1) changes.

- python 3 support added

Version 1.3.2
## Version 1.4.1

- creating new user always creates new empty userena profile (fixes bug from 1.3.1)
Fixes and improvements:

Version 1.3.1
- Set `html2text==2014.12.29` requirement in order to remove nasty hack
in `userena/mail.py` (#462).
- Updated version in Sphinx docs (#461).
- Added support for Python3.2 (#453).
- Fixed issue causing malformed utf-8 usernames on user profile creation (#456).
- Fixed issue with user creation on Python3.4 (#455).
- Fixed randomly failing tests on travis (#446).

- when USERENA_ACTIVATION_REQUIRED = False, creating new user does not automatically
create userena profile (bug)

Version 1.2.2
## Version 1.4.0

Fixes and improvements:

- Python3.3 and Python3.4 support added.


## Version 1.3.2

Backwards incompatibile changes:

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


## Version 1.3.1

Backwards incompatibile changes:

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


## Version 1.2.2

Backwards incompatibile 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

## Version 1.2.0

Backwards incompatibile 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
work, there is a `get_user_model` function in `userena/utils.py` which is used
to get the correct `User` model.

Version 1.1.2

## Version 1.1.2

Backwards incompatibile changes:

- Activation view no longer contains username. If you override
`userena/templates/userena/emails/activation_email_message.txt` and
`userena/templates/userena/emails/confirmation_email_message_new.txt` be sure
to remove username from the URL.

Version 1.1

## Version 1.1

Backwards incompatibile changes:

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

Version 1.0.1

## Version 1.0.1

Backwards incompatibile 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, 0)
VERSION = (1, 4, 1)

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

Expand Down

0 comments on commit 1b84156

Please sign in to comment.