Skip to content

Commit e2c4a2e

Browse files
committed
Updated readme, changelog and version bump
1 parent ccadc11 commit e2c4a2e

File tree

3 files changed

+31
-6
lines changed

3 files changed

+31
-6
lines changed

CHANGELOG.md

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

25+
## 0.4.0 - 2021-05-21
26+
### Added
27+
- Products & product categories
28+
- Product & product category permissions
29+
### Fixed
30+
- Issue with editing a role name
31+
- Issue with dashboard chart
32+
2533
## 0.3.1 - 2021-05-12
2634
### Added
2735
- Version check on updates route

README.md

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/1946e83f51de4a0eb430a8e0a1aab3cf)](https://app.codacy.com/gh/venturedrake/laravel-crm?utm_source=github.com&utm_medium=referral&utm_content=venturedrake/laravel-crm&utm_campaign=Badge_Grade_Settings)
77
[![Total Downloads](https://img.shields.io/packagist/dt/venturedrake/laravel-crm.svg?style=flat-square)](https://packagist.org/packages/venturedrake/laravel-crm)
88

9-
This package will add CRM functionality to your laravel projects.
9+
This package will add CRM functionality to your laravel projects
1010

11-
> ⚠️ Warning: This is a pre-release version that is not yet ready for production use.
11+
> ⚠️ Warning: This is a pre-release version that is not recommended for production use.
1212
1313
## Use Cases
1414

@@ -43,15 +43,15 @@ https://spatie.be/docs/laravel-permission/v4/installation-laravel
4343
#### Step 4. Require the current package using composer:
4444

4545
```bash
46-
composer require venturedrake/laravel-crm:^0.3
46+
composer require venturedrake/laravel-crm:^0.4
4747
```
4848

4949
#### Step 5. Publish the migrations, config & assets
5050

5151
```bash
5252
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
5353
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="config"
54-
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets"
54+
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force
5555
```
5656

5757
#### Step 6. Update the various config settings in the published config file:
@@ -125,7 +125,24 @@ 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
128+
### Upgrading from 0.3 to 0.4
129+
130+
#### Step 1. Run the following to the update migrations and publish assets:
131+
132+
```bash
133+
composer require venturedrake/laravel-crm::^0.4
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+
139+
#### Step 2. Run the database seeder
140+
141+
```bash
142+
php artisan db:seed --class="VentureDrake\LaravelCrm\Database\Seeders\LaravelCrmTablesSeeder"
143+
```
144+
145+
### Upgrading from 0.1 to 0.3
129146

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

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

1818
];

0 commit comments

Comments
 (0)