Skip to content

Commit 7dcbe73

Browse files
committed
Updated version info
1 parent ebc379e commit 7dcbe73

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
149149
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
150150
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="config"
151151
php 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
167167
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
168168
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="config"
169169
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force

config/package.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
|
1414
*/
1515

16-
'version' => '0.10.1',
16+
'version' => '0.11.0',
1717

1818
];

0 commit comments

Comments
 (0)