Skip to content
This repository was archived by the owner on Feb 16, 2022. It is now read-only.

Commit 2383a17

Browse files
committed
Merge branch 'release/v4.0.3'
2 parents 8eec096 + bd1cf1b commit 2383a17

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55
This project adheres to [Semantic Versioning](CONTRIBUTING.md).
66

77

8+
## [v4.0.3] - 2020-04-04
9+
- Fix namespace issue
10+
811
## [v4.0.2] - 2020-04-04
912
- Enforce consistent artisan command tag namespacing
1013
- Enforce consistent package namespace
@@ -132,6 +135,7 @@ This project adheres to [Semantic Versioning](CONTRIBUTING.md).
132135
## v0.0.1 - 2017-04-08
133136
- Rename package to "rinvex/attributable" from "rinvex/sparse" based on 715a831
134137

138+
[v4.0.3]: https://github.com/rinvex/laravel-attributes/compare/v4.0.2...v4.0.3
135139
[v4.0.2]: https://github.com/rinvex/laravel-attributes/compare/v4.0.1...v4.0.2
136140
[v4.0.1]: https://github.com/rinvex/laravel-attributes/compare/v4.0.0...v4.0.1
137141
[v4.0.0]: https://github.com/rinvex/laravel-attributes/compare/v3.0.3...v4.0.0

src/Providers/AttributesServiceProvider.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ public function register()
5757
public function boot()
5858
{
5959
// Publish Resources
60-
$this->publishesConfig('rinvex/attributes');
61-
$this->publishesMigrations('rinvex/attributes');
62-
! $this->autoloadMigrations('rinvex/attributes') || $this->loadMigrationsFrom(__DIR__.'/../../database/migrations');
60+
$this->publishesConfig('rinvex/laravel-attributes');
61+
$this->publishesMigrations('rinvex/laravel-attributes');
62+
! $this->autoloadMigrations('rinvex/laravel-attributes') || $this->loadMigrationsFrom(__DIR__.'/../../database/migrations');
6363
}
6464
}

0 commit comments

Comments
 (0)