Skip to content

Commit

Permalink
fix user account update signals triggering (#1274)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed Sep 6, 2023
1 parent b6e4827 commit bed01cb
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ Changelog for the **SODAR Core** Django app package. Loosely follows the
`Keep a Changelog <http://keepachangelog.com/en/1.0.0/>`_ guidelines.


Unreleased
==========

Fixed
-----

- **Projectroles**
- User account update signals not triggered on login (#1274)


v0.13.1 (2023-08-30)
====================

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# The short X.Y version
version = '0.13'
# The full version, including alpha/beta/rc tags
release = '0.13.1'
release = '0.13.2-WIP'


# -- General configuration ---------------------------------------------------
Expand Down
9 changes: 9 additions & 0 deletions docs/source/major_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ older SODAR Core version. For a complete list of changes in current and previous
releases, see the :ref:`full changelog<changelog>`.


v0.13.2 (WIP)
*************

Release Highlights
==================

- General bug fixes and minor updates


v0.13.1 (2023-08-30)
********************

Expand Down
3 changes: 3 additions & 0 deletions projectroles/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@

class ProjectrolesConfig(AppConfig):
name = 'projectroles'

def ready(self):
import projectroles.signals # noqa

0 comments on commit bed01cb

Please sign in to comment.