From 48fc11689fe689d3cf7d964cb8f10bc770d96d95 Mon Sep 17 00:00:00 2001 From: Louis Charette Date: Sun, 14 Oct 2018 15:55:46 -0400 Subject: [PATCH] Updated Changelog + prep release 4.1.20 --- CHANGELOG.md | 4 ++++ app/defines.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89c292380..321e15524 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## v4.1.20 +- Added `route:list` command to list all registered routes ([#903](https://github.com/userfrosting/UserFrosting/pull/903); Thanks @apple314159 !) +- Added warning in configuration file regarding disabling registration and email verification ([#900](https://github.com/userfrosting/UserFrosting/pull/900); Thanks @linkhousemedia !) + ## v4.1.19 - Prevent setup to run again if already configured when using `bake` - Fix `Unique::getPaginatedQuery` to call to `addSelect` instead of `select` during the pre-paginated query diff --git a/app/defines.php b/app/defines.php index 0afd85e93..56d2b361f 100755 --- a/app/defines.php +++ b/app/defines.php @@ -3,7 +3,7 @@ namespace UserFrosting; // Some standard defines -define('UserFrosting\VERSION', '4.1.19'); +define('UserFrosting\VERSION', '4.1.20'); define('UserFrosting\DS', '/'); define('UserFrosting\PHP_MIN_VERSION', '5.6'); define('UserFrosting\DEBUG_CONFIG', false);