From e4a3a6f83a6e7c416202ec7cbfe7696e786c9d54 Mon Sep 17 00:00:00 2001 From: Gio Gottardi Date: Mon, 23 Oct 2017 14:26:00 -0500 Subject: [PATCH 1/3] Bump version to 2.1.0 --- CHANGELOG.md | 6 +++++- docs/conf.py | 4 ++-- docs/permissions.rst | 2 +- docs/quickstart.rst | 2 +- setup.py | 2 +- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 304cfb1..964360d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,14 @@ Change Log 2.1.0 ----- +* Added filtering to the groups and permissions selection boxes on the invitation page. +* Added check for the usernames and emails on the invitation page to show whether they're in use before submitting the form. * Added setting to show emails on the accounts page to superusers and users who can create invitations. * Added setting to limit the timeframe for showing open invitations and registrations on the accounts page. -* Made some small UI tweaks on the invitations and accounts pages. +* Tweaked the UI on the invitations and accounts pages. * Fixed remaining sorting difference that occurred after resending invitation email. +* Fixed some other small UI errors, particularly on the invitations and accounts pages. +* Changed the dev environment to output emails directly stdout. 2.0.2 ----- diff --git a/docs/conf.py b/docs/conf.py index c034960..de14c4f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,9 +51,9 @@ # built documents. # # The short X.Y version. -version = '2.0' +version = '2.1' # The full version, including alpha/beta/rc tags. -release = '2.0.2' +release = '2.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/permissions.rst b/docs/permissions.rst index d2d803d..6b61e2d 100644 --- a/docs/permissions.rst +++ b/docs/permissions.rst @@ -8,4 +8,4 @@ which users are allowed to invite new users your project. ``invite.add_invitation`` .. note:: - If a user does not have this permission, they will still have limited access to pages included in the Invite app. Such users will only be shown a list of active accounts. They will not have access to the open invitations or the invitation form. + If a user does not have this permission, they will still have limited access to pages included in the Invite app. Such users will only be shown a list of recent registrations and recently sent open invitations. They will not have access to the invitation form. diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 446e169..4e02968 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -12,7 +12,7 @@ Requirements Installation ------------ -* ``pip install git+https://github.com/unt-libraries/django-invite.git@2.0.2`` +* ``pip install git+https://github.com/unt-libraries/django-invite.git@2.1.0`` * Add ``invite`` to your ``INSTALLED_APPS`` * Run ``./manage.py migrate`` diff --git a/setup.py b/setup.py index 0c5cdc1..a577da7 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="django-invite", - version="2.0.2", + version="2.1.0", packages=find_packages(), include_package_data=True, From 36e72b2e39a957c0dd94ec405fc08e0c6b7f30b4 Mon Sep 17 00:00:00 2001 From: Gio Gottardi Date: Mon, 23 Oct 2017 15:01:20 -0500 Subject: [PATCH 2/3] Add more detail to CHANGELOG. --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 964360d..9d732d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,14 @@ Change Log * Added setting to show emails on the accounts page to superusers and users who can create invitations. * Added setting to limit the timeframe for showing open invitations and registrations on the accounts page. * Tweaked the UI on the invitations and accounts pages. + * Resized and moved some of the inputs. + * Improved responsiveness. + * Improved behavior and location of the "add" button on the invitation form. + * Made sure username is displayed correctly. + * Stopped duplicate error messages from being shown. + * Made sure errors get removed when their form row is removed. + * Updated wording and information organization on the accounts page. * Fixed remaining sorting difference that occurred after resending invitation email. -* Fixed some other small UI errors, particularly on the invitations and accounts pages. * Changed the dev environment to output emails directly stdout. 2.0.2 From 603aba732d20305f89f6c3d92f81153adf468b3e Mon Sep 17 00:00:00 2001 From: Gio Gottardi Date: Mon, 23 Oct 2017 15:09:52 -0500 Subject: [PATCH 3/3] Fix sentence. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d732d1..b171356 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ Change Log * Made sure errors get removed when their form row is removed. * Updated wording and information organization on the accounts page. * Fixed remaining sorting difference that occurred after resending invitation email. -* Changed the dev environment to output emails directly stdout. +* Changed the dev environment to output emails directly to stdout. 2.0.2 -----