Skip to content

Commit

Permalink
Merge pull request bagisto#6077 from jitendra-webkul/master
Browse files Browse the repository at this point in the history
Updated changelog, fixed bagisto version display issue
  • Loading branch information
jitendra-webkul committed Mar 17, 2022
2 parents eff1410 + 0080ca4 commit 6b51678
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
APP_NAME=Bagisto
APP_ENV=local
APP_VERSION=1.4.1
APP_KEY=
APP_DEBUG=true
APP_URL=https://localhost
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG for v1.x.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
5 changes: 5 additions & 0 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,11 @@
*/
'editor' => 'vscode',

/*
*Application Version
*/
'version' => env('APP_VERSION', '1.x-dev'),

/**
* Blacklisting attributes while debugging
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/Webkul/Core/src/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public function __construct(
*/
public function version()
{
return static::BAGISTO_VERSION;
return config('app.version');
}

/**
Expand Down

0 comments on commit 6b51678

Please sign in to comment.