File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919### Fixed
2020### Removed --->
2121
22+ ## 0.11.0 - 2022-09-03
23+ ### Added
24+ - Laravel 9 support
25+ - Default settings in config
26+ - Better subdomain support so not to conflict with other routes
27+ - Noted at datetime on notes
28+ ### Changed
29+ - Replaced countries package for Laravel 9 support
30+ ### Fixed
31+ - Laravel 6 support
32+ - PHP 7 support
33+ - Team settings
34+ - Bug when not using teams support causing issue with permissions and seeder
35+
2236## 0.10.1 - 2022-03-22
2337### Fixed
2438- Issue with middleware affecting access to non-crm API
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ https://laravel.com/docs/6.x/authentication
5252#### Step 3. Require the current package using composer:
5353
5454``` bash
55- composer require venturedrake/laravel-crm:^0.10
55+ composer require venturedrake/laravel-crm:^0.11
5656```
5757
5858#### Step 4. Publish the migrations, config & assets
@@ -145,7 +145,7 @@ Note if you modified the route_prefix setting from the default the above url wil
145145#### Step 1. Run the following to the update migrations and publish assets:
146146
147147``` bash
148- composer require venturedrake/laravel-crm::^0.10
148+ composer require venturedrake/laravel-crm::^0.11
149149php artisan vendor:publish --provider=" VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag=" migrations"
150150php artisan vendor:publish --provider=" VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag=" config"
151151php artisan vendor:publish --provider=" VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag=" assets" --force
@@ -163,7 +163,7 @@ php artisan db:seed --class="VentureDrake\LaravelCrm\Database\Seeders\LaravelCrm
163163#### Step 1. Run the following to the update package:
164164
165165``` bash
166- composer require venturedrake/laravel-crm::^0.9
166+ composer require venturedrake/laravel-crm::^0.11
167167php artisan vendor:publish --provider=" VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag=" migrations"
168168php artisan vendor:publish --provider=" VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag=" config"
169169php artisan vendor:publish --provider=" VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag=" assets" --force
Original file line number Diff line number Diff line change 1313 |
1414 */
1515
16- 'version ' => '0.10.1 ' ,
16+ 'version ' => '0.11.0 ' ,
1717
1818 ];
You can’t perform that action at this time.
0 commit comments