Skip to content

Commit bf6b775

Browse files
committed
Merge branch 'release/1.0.4'
2 parents 388e1d9 + a9fd3ac commit bf6b775

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

VERSIONLOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Versions
22

3+
## 1.0.4 2021-01-25
4+
* Updated the `RbServiceProvider` to publish `RbRequest` in same directory as specified in configs.
5+
36
## 1.0.3 2021-01-25
47
* Documentation updated.
58

src/Core/RbServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function boot()
1212
// Publish configuration and RbRequest files
1313
$this->publishes([
1414
__DIR__.'/../Configs/config.php' => app()->basePath() . '/config/response_builder.php',
15-
__DIR__ . '/../Requests/RbRequest.php' => app()->basePath() . '/app/Http/Requests/RB/RbRequest.php',
15+
__DIR__ . '/../Requests/RbRequest.php' => config('response_builder.request_path') . '/RbRequest.php',
1616
], 'laravel-response-builder');
1717

1818
// Register commands

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"major":1,"minor":0,"patch":3}
1+
{"major":1,"minor":0,"patch":4}

0 commit comments

Comments
 (0)