Skip to content

Commit

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

## 0.4.0 - 2021-05-21
### Added
- Products & product categories
- Product & product category permissions
### Fixed
- Issue with editing a role name
- Issue with dashboard chart

## 0.3.1 - 2021-05-12
### Added
- Version check on updates route
Expand Down
27 changes: 22 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
[![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)
[![Total Downloads](https://img.shields.io/packagist/dt/venturedrake/laravel-crm.svg?style=flat-square)](https://packagist.org/packages/venturedrake/laravel-crm)

This package will add CRM functionality to your laravel projects.
This package will add CRM functionality to your laravel projects

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

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

```bash
composer require venturedrake/laravel-crm:^0.3
composer require venturedrake/laravel-crm:^0.4
```

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

```bash
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"
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force
```

#### Step 6. Update the various config settings in the published config file:
Expand Down Expand Up @@ -125,7 +125,24 @@ Note if you modified the route_prefix setting from the default the above url wil

## Upgrade

### Upgrading from 0.2 to 0.3
### Upgrading from 0.3 to 0.4

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

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

#### Step 2. Run the database seeder

```bash
php artisan db:seed --class="VentureDrake\LaravelCrm\Database\Seeders\LaravelCrmTablesSeeder"
```

### Upgrading from 0.1 to 0.3

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

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

];

0 comments on commit e2c4a2e

Please # to comment.