Skip to content

Commit

Permalink
Updated changelog, readme and factories
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdrake committed May 11, 2021
1 parent 78f8547 commit 76a6c49
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Removed --->

## 0.3.0 - 2021-05-11
### Added
- Dashboard
- team_id to models
### Removed
- User model class

## 0.2.7 - 2021-04-04
### Fixed
- Conflict with Laravel 8 Jetstream teams route
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,17 @@ Note if you modified the route_prefix setting from the default the above url wil

## Upgrade

### Upgrading from 0.2 to 0.3

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

```bash
composer require venturedrake/laravel-crm::^0.3
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets --force"
php artisan migrate
```

### Upgrading from 0.1 to 0.2

#### Step 1. Run the following to the update package, database and add the default roles/permissions:
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.2.7',
'version' => '0.3.0',

];
2 changes: 1 addition & 1 deletion database/factories/DealFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
'currency' => 'USD',
'user_owner_id' => 1,
'user_assigned_id' => 1,
'created_at' => Carbon::now()->subDays($faker->numberBetween(0,14))
'created_at' => Carbon::now()->subDays($faker->numberBetween(0, 14)),
];
});
2 changes: 1 addition & 1 deletion database/factories/LeadFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
'currency' => 'USD',
'lead_status_id' => 1,
'user_assigned_id' => 1,
'created_at' => Carbon::now()->subDays($faker->numberBetween(0,14))
'created_at' => Carbon::now()->subDays($faker->numberBetween(0, 14)),
];
});

0 comments on commit 76a6c49

Please # to comment.