Skip to content

Commit 576f141

Browse files
committed
Release details
1 parent c95010e commit 576f141

File tree

3 files changed

+19
-28
lines changed

3 files changed

+19
-28
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
### Fixed
2121
### Removed --->
2222

23+
## 0.6.0 - 2021-07-14
24+
### Added
25+
- Support for Jetstream/Spark teams
26+
### Fixed
27+
- Model observers - https://github.com/venturedrake/laravel-crm/issues/29
28+
- Assign role instead of sync - https://github.com/venturedrake/laravel-crm/pull/28
29+
2330
## 0.5.1 - 2021-05-31
2431
### Fixed
2532
- Missing key in lang file

README.md

Lines changed: 11 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ This package will add CRM functionality to your laravel projects
1616
- Build a custom CRM for your business or your clients
1717
- Use as an integrated CRM for your Laravel powered business (Saas, E-commerce, etc)
1818
- Use as a CRM for your Laravel development business
19+
- Run a multi-tenant CRM Saas business
1920

2021
## Features
2122

@@ -27,6 +28,7 @@ This package will add CRM functionality to your laravel projects
2728
- Users & Teams
2829
- Secure registration & login
2930
- Reset forgotten password
31+
- Laravel Jetstream/Spark teams support
3032

3133
## Installation (10-15mins)
3234

@@ -45,7 +47,7 @@ https://spatie.be/docs/laravel-permission/v4/installation-laravel
4547
#### Step 4. Require the current package using composer:
4648

4749
```bash
48-
composer require venturedrake/laravel-crm:^0.5
50+
composer require venturedrake/laravel-crm:^0.6
4951
```
5052

5153
#### Step 5. Publish the migrations, config & assets
@@ -127,12 +129,12 @@ Note if you modified the route_prefix setting from the default the above url wil
127129

128130
## Upgrade
129131

130-
### Upgrading from 0.3
132+
### Upgrading from >= 0.2
131133

132134
#### Step 1. Run the following to the update migrations and publish assets:
133135

134136
```bash
135-
composer require venturedrake/laravel-crm::^0.5
137+
composer require venturedrake/laravel-crm::^0.6
136138
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
137139
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force
138140
php artisan migrate
@@ -144,26 +146,12 @@ php artisan migrate
144146
php artisan db:seed --class="VentureDrake\LaravelCrm\Database\Seeders\LaravelCrmTablesSeeder"
145147
```
146148

147-
### Upgrading from 0.1 to 0.3
149+
### Upgrading from < 0.2
148150

149-
#### Step 1. Run the following to the update migrations and publish assets:
151+
#### Step 1. Run the following to the update package:
150152

151153
```bash
152-
composer require venturedrake/laravel-crm::^0.3
153-
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
154-
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force
155-
php artisan migrate
156-
```
157-
158-
### Upgrading from 0.1 to 0.2
159-
160-
#### Step 1. Run the following to the update package, database and add the default roles/permissions:
161-
162-
```bash
163-
composer require venturedrake/laravel-crm::^0.2
164-
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
165-
php artisan migrate
166-
php artisan db:seed --class="VentureDrake\LaravelCrm\Database\Seeders\LaravelCrmTablesSeeder"
154+
composer require venturedrake/laravel-crm::^0.6
167155
```
168156

169157
#### Step 2. Delete previously published package views located in <code>resources/views/vendor/laravel-crm/*</code>
@@ -172,18 +160,14 @@ php artisan db:seed --class="VentureDrake\LaravelCrm\Database\Seeders\LaravelCrm
172160

173161
#### Step 4. Add HasCrmAccess, HasCrmTeams & HasRoles traits to App\User model, see installation Step 8.
174162

175-
### Upgrading from 0.1.x to 0.1.2
176-
177-
#### Step 1. Run the following to update the package & database
178-
163+
#### Step 5. Run the following to the update database and add the default roles/permissions:
179164
```bash
180-
composer require venturedrake/laravel-crm::^0.1
181165
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
166+
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force
182167
php artisan migrate
168+
php artisan db:seed --class="VentureDrake\LaravelCrm\Database\Seeders\LaravelCrmTablesSeeder"
183169
```
184170

185-
#### Step 2. Delete previously published package views located in folder <code>resources/views/vendor/laravel-crm/*</code>
186-
187171
<!--- ## Usage --->
188172

189173
## Testing

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.5.1',
16+
'version' => '0.6.0',
1717

1818
];

0 commit comments

Comments
 (0)