diff --git a/CHANGELOG.md b/CHANGELOG.md index deece9a..f5761ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Changed - ... +## [0.0.6] - 2018-05-09 +### Fixed +- Corrected migration filename error. Third time's the charm...?! + ## [0.0.5] - 2018-05-09 ### Fixed - Corrected copy/paste filename error related to migration filename and publishing. @@ -43,7 +47,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - A set of tests. - Minimal documentation. -[Unreleased]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.5...HEAD +[Unreleased]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.6...HEAD +[0.0.6]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.5...v0.0.6 [0.0.5]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.4...v0.0.5 [0.0.4]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.3...v0.0.4 [0.0.3]: https://github.com/telkins/laravel-dag-manager/compare/v0.0.2...v0.0.3 diff --git a/src/Providers/DagServiceProvider.php b/src/Providers/DagServiceProvider.php index 2e324ec..e38b8e1 100644 --- a/src/Providers/DagServiceProvider.php +++ b/src/Providers/DagServiceProvider.php @@ -22,7 +22,7 @@ public function boot() $timestamp = date('Y_m_d_His', time()); $this->publishes([ - __DIR__ . '/../../migrations/create_dag_edges_table.php.stub' => database_path("/migrations/{$timestamp}_create_dag_edges_table.php"), + __DIR__ . '/../../database/migrations/create_dag_edges_table.php.stub' => database_path("/migrations/{$timestamp}_create_dag_edges_table.php"), ], 'migrations'); } }