Skip to content

Commit

Permalink
Release v0.4 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
jambonrose committed Aug 15, 2017
1 parent 11287e9 commit b9294de
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.4.0
commit = True
tag = False

[bumpversion:file:appveyor.yml]

[bumpversion:file:setup.py]

16 changes: 16 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,26 @@ History
Next Release
------------

- Nothing yet!

0.4.0 (2017-08-14)
------------------

**Warning**: This is a **breaking change**, and migrations will conflict
with v0.3.0 due to PR `#23`_

- Add UserFactory to make testing easier for developers using the
pacakge; requires factory_boy (PR `#20`_)
- Split the ``ImprovedIdentityMixin`` class into atomic parts:
``DjangoIntegrationMixin``, ``FullNameMixin``, ``ShortNameMixin``,
``EmailAuthMixin``. This allows developers to create their own custom
AbstractUsers if needed. (PR `#22`_)
- Change ``blank`` to ``True`` on ``short_name`` field of User model.
(**Breaking change!** PR `#23`_).

.. _#20: https://github.com/jambonsw/django-improved-user/pull/20
.. _#22: https://github.com/jambonsw/django-improved-user/pull/22
.. _#23: https://github.com/jambonsw/django-improved-user/pull/23

0.3.0 (2017-08-10)
------------------
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://www.appveyor.com/docs/appveyor-yml/
version: '{branch}-v0.3.0-{build}'
version: '{branch}-v0.4.0-{build}'
branches:
only:
- development
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def run_tests(self):

setup(
name='django-improved-user',
version='0.3.0',
version='0.4.0',
description=(
'A custom Django user model for best practices email-based login.'
),
Expand Down

0 comments on commit b9294de

Please sign in to comment.