diff --git a/.env.example b/.env.example index 25d9fe22f..ecc5f9cd9 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,6 @@ APP_NAME=Bagisto APP_ENV=local +APP_VERSION=1.4.1 APP_KEY= APP_DEBUG=true APP_URL=http://localhost diff --git a/CHANGELOG for v1.x.x.md b/CHANGELOG for v1.x.x.md index 01338b76a..27369efc6 100644 --- a/CHANGELOG for v1.x.x.md +++ b/CHANGELOG for v1.x.x.md @@ -2,6 +2,20 @@ This changelog consists of the bug & security fixes and new features being included in the releases listed below. + +## **v1.4.1 (17th of March 2022)** - *Release* + +* #6040 [enhancement] - The locale dropdown should be in ascending order + +* #6007 [enhancement] - There should be an option to export selected product + +* #5923 [enhancement] - There should not be option for mass delete if there is no record in table + +* #6039 [fixed] - The from date should be less than to date + +* #6038 [fixed] - The color of checkboxes should be according to the theme in the admin panel + + ## **v1.4.0 (16th of March 2022)** - *Release* * #5654 [feature] -Only unread notification should be shown in the notification modal box. diff --git a/config/app.php b/config/app.php index 68b903347..88747d3aa 100755 --- a/config/app.php +++ b/config/app.php @@ -162,6 +162,11 @@ return [ */ 'editor' => 'vscode', + /* + *Application Version + */ + 'version' => env('APP_VERSION', '1.x-dev'), + /** * Blacklisting attributes while debugging */ diff --git a/packages/Webkul/Core/src/Core.php b/packages/Webkul/Core/src/Core.php index 15b610622..01f584e5f 100755 --- a/packages/Webkul/Core/src/Core.php +++ b/packages/Webkul/Core/src/Core.php @@ -149,7 +149,7 @@ class Core */ public function version() { - return static::BAGISTO_VERSION; + return config('app.version'); } /**