Skip to content

Commit

Permalink
Updated version info
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdrake committed Sep 3, 2022
1 parent ebc379e commit 7dcbe73
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Removed --->

## 0.11.0 - 2022-09-03
### Added
- Laravel 9 support
- Default settings in config
- Better subdomain support so not to conflict with other routes
- Noted at datetime on notes
### Changed
- Replaced countries package for Laravel 9 support
### Fixed
- Laravel 6 support
- PHP 7 support
- Team settings
- Bug when not using teams support causing issue with permissions and seeder

## 0.10.1 - 2022-03-22
### Fixed
- Issue with middleware affecting access to non-crm API
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ https://laravel.com/docs/6.x/authentication
#### Step 3. Require the current package using composer:

```bash
composer require venturedrake/laravel-crm:^0.10
composer require venturedrake/laravel-crm:^0.11
```

#### Step 4. Publish the migrations, config & assets
Expand Down Expand Up @@ -145,7 +145,7 @@ Note if you modified the route_prefix setting from the default the above url wil
#### Step 1. Run the following to the update migrations and publish assets:

```bash
composer require venturedrake/laravel-crm::^0.10
composer require venturedrake/laravel-crm::^0.11
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="config"
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force
Expand All @@ -163,7 +163,7 @@ php artisan db:seed --class="VentureDrake\LaravelCrm\Database\Seeders\LaravelCrm
#### Step 1. Run the following to the update package:

```bash
composer require venturedrake/laravel-crm::^0.9
composer require venturedrake/laravel-crm::^0.11
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="config"
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force
Expand Down
2 changes: 1 addition & 1 deletion config/package.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
|
*/

'version' => '0.10.1',
'version' => '0.11.0',

];

0 comments on commit 7dcbe73

Please sign in to comment.