diff --git a/CHANGELOG.md b/CHANGELOG.md index 155935ba9..8b484110f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # ColdFront Changelog +## [1.1.3] - 2022-07-07 + +- Fix erronous allocation change request error message [#428](https://github.com/ubccr/coldfront/issues/428) +- Upgrade bootstrap and move to static assets [#405](https://github.com/ubccr/coldfront/issues/405) +- Allow changes on allocations in the test dataset +- Add new ColdFront logos and branding [#431](https://github.com/ubccr/coldfront/pull/431) + ## [1.1.2] - 2022-07-06 - Fix "Select all" toggle for allocations [#396](https://github.com/ubccr/coldfront/issues/396) @@ -101,4 +108,5 @@ [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 [1.1.2]: https://github.com/ubccr/coldfront/releases/tag/v1.1.2 -[Unreleased]: https://github.com/ubccr/coldfront/compare/v1.1.2...HEAD +[1.1.3]: https://github.com/ubccr/coldfront/releases/tag/v1.1.3 +[Unreleased]: https://github.com/ubccr/coldfront/compare/v1.1.3...HEAD diff --git a/coldfront/__init__.py b/coldfront/__init__.py index fa01a2b9f..e840163fb 100644 --- a/coldfront/__init__.py +++ b/coldfront/__init__.py @@ -1,7 +1,7 @@ import os import sys -__version__ = '1.1.2' +__version__ = '1.1.3' VERSION = __version__