From 126a1d4627863aa50fbe7824904ab0d20e5bb790 Mon Sep 17 00:00:00 2001 From: "Andrew E. Bruno" Date: Sat, 11 Feb 2023 21:09:01 -0500 Subject: [PATCH] Bump version --- CHANGELOG.md | 19 ++++++++++++++----- coldfront/__init__.py | 2 +- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e27f2bc4..86fc3bf83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,20 @@ # ColdFront Changelog -## [1.1.4] - +## [1.1.4] - 2022-02-11 -- Fix bug in slurm plugin include allocations in 'pending renewal' status [#176](https://github.com/ubccr/coldfront/issues/176) -- Datepicker changed to flatpickr. Remove jquery-ui [#443](https://github.com/ubccr/coldfront/pull/443) +- Datepicker changed to flatpickr. Remove jquery-ui [#438](https://github.com/ubccr/coldfront/issues/438) - Combined email expiry notifications [#413](https://github.com/ubccr/coldfront/pull/413) - Remove obsolete arguments in signal defs [#422](https://github.com/ubccr/coldfront/pull/422) -- Fix bug in freeipa plugin [#416](https://github.com/ubccr/coldfront/issues/416) +- Allow sorting of users on detail page [#408](https://github.com/ubccr/coldfront/issues/408) +- Fix approve button deleting description text [#433](https://github.com/ubccr/coldfront/issues/433) +- Add Project Attributes [#466](https://github.com/ubccr/coldfront/pull/466) +- Slurm plugin: fix allocations in pending renewal status [#176](https://github.com/ubccr/coldfront/issues/176) +- Update list displayes to sort case insensitive throughout front end [#393](https://github.com/ubccr/coldfront/issues/393) +- Fix FreeIPA plugin not recognizing usernames greater than 11 characters [#416](https://github.com/ubccr/coldfront/issues/416) +- Send signal if allocation status is revoked [#474](https://github.com/ubccr/coldfront/issues/474) +- Upgrade to Django 3.2.17 +- Allow configuration of session timeout [#452](https://github.com/ubccr/coldfront/issues/452) +- Increase max length for user first_name [#490](https://github.com/ubccr/coldfront/pull/490) ## [1.1.3] - 2022-07-07 @@ -117,4 +125,5 @@ [1.1.1]: https://github.com/ubccr/coldfront/releases/tag/v1.1.1 [1.1.2]: https://github.com/ubccr/coldfront/releases/tag/v1.1.2 [1.1.3]: https://github.com/ubccr/coldfront/releases/tag/v1.1.3 -[Unreleased]: https://github.com/ubccr/coldfront/compare/v1.1.3...HEAD +[1.1.4]: https://github.com/ubccr/coldfront/releases/tag/v1.1.4 +[Unreleased]: https://github.com/ubccr/coldfront/compare/v1.1.4...HEAD diff --git a/coldfront/__init__.py b/coldfront/__init__.py index e840163fb..8e231ba7b 100644 --- a/coldfront/__init__.py +++ b/coldfront/__init__.py @@ -1,7 +1,7 @@ import os import sys -__version__ = '1.1.3' +__version__ = '1.1.4' VERSION = __version__