Skip to content

Commit 76a6c49

Browse files
committed
Updated changelog, readme and factories
1 parent 78f8547 commit 76a6c49

File tree

5 files changed

+21
-3
lines changed

5 files changed

+21
-3
lines changed

CHANGELOG.md

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

25+
## 0.3.0 - 2021-05-11
26+
### Added
27+
- Dashboard
28+
- team_id to models
29+
### Removed
30+
- User model class
31+
2532
## 0.2.7 - 2021-04-04
2633
### Fixed
2734
- Conflict with Laravel 8 Jetstream teams route

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,17 @@ Note if you modified the route_prefix setting from the default the above url wil
125125

126126
## Upgrade
127127

128+
### Upgrading from 0.2 to 0.3
129+
130+
#### Step 1. Run the following to the update migrations and publish assets:
131+
132+
```bash
133+
composer require venturedrake/laravel-crm::^0.3
134+
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
135+
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets --force"
136+
php artisan migrate
137+
```
138+
128139
### Upgrading from 0.1 to 0.2
129140

130141
#### Step 1. Run the following to the update package, database and add the default roles/permissions:

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

1818
];

database/factories/DealFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
'currency' => 'USD',
2121
'user_owner_id' => 1,
2222
'user_assigned_id' => 1,
23-
'created_at' => Carbon::now()->subDays($faker->numberBetween(0,14))
23+
'created_at' => Carbon::now()->subDays($faker->numberBetween(0, 14)),
2424
];
2525
});

database/factories/LeadFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
'currency' => 'USD',
1919
'lead_status_id' => 1,
2020
'user_assigned_id' => 1,
21-
'created_at' => Carbon::now()->subDays($faker->numberBetween(0,14))
21+
'created_at' => Carbon::now()->subDays($faker->numberBetween(0, 14)),
2222
];
2323
});

0 commit comments

Comments
 (0)