From c15f402e093fb8cd2e23b455689b885b6567574a Mon Sep 17 00:00:00 2001 From: "Andrew E. Bruno" Date: Wed, 6 Jul 2022 14:46:06 -0400 Subject: [PATCH] Bump version to v1.1.2 --- CHANGELOG.md | 14 +++++++++++++- coldfront/__init__.py | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a4a7383d..155935ba9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # ColdFront Changelog +## [1.1.2] - 2022-07-06 + +- Fix "Select all" toggle for allocations [#396](https://github.com/ubccr/coldfront/issues/396) +- Fixed allocation expiration task bug [#401](https://github.com/ubccr/coldfront/pull/401) +- Fix new user sorting [#395](https://github.com/ubccr/coldfront/issues/395) +- Fix allocation approved status [#379](https://github.com/ubccr/coldfront/issues/379) +- Add notes on project detail page [#194](https://github.com/ubccr/coldfront/issues/194) +- Add partial match for attribute search [#421](https://github.com/ubccr/coldfront/pull/421) +- Fix miscellaneous config issues [#414](https://github.com/ubccr/coldfront/issues/414) +- Upgrade to Django 3.2.14 + ## [1.1.1] - 2022-04-26 - Fix grant export to only download those found under search [#222](https://github.com/ubccr/coldfront/issues/222) @@ -89,4 +100,5 @@ [1.0.4]: https://github.com/ubccr/coldfront/releases/tag/v1.0.4 [1.1.0]: https://github.com/ubccr/coldfront/releases/tag/v1.1.0 [1.1.1]: https://github.com/ubccr/coldfront/releases/tag/v1.1.1 -[Unreleased]: https://github.com/ubccr/coldfront/compare/v1.1.1...HEAD +[1.1.2]: https://github.com/ubccr/coldfront/releases/tag/v1.1.2 +[Unreleased]: https://github.com/ubccr/coldfront/compare/v1.1.2...HEAD diff --git a/coldfront/__init__.py b/coldfront/__init__.py index 6a49f2f57..fa01a2b9f 100644 --- a/coldfront/__init__.py +++ b/coldfront/__init__.py @@ -1,7 +1,7 @@ import os import sys -__version__ = '1.1.1' +__version__ = '1.1.2' VERSION = __version__