Skip to content

Commit 4a2da70

Browse files
committed
Merge branch 'release/2.0.0-beta'
2 parents 339dc21 + 599bb00 commit 4a2da70

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.0-beta] - 2020-03-03
11+
### Changed
12+
- Renamed `Operation::getAttributes()` to `Operation::getPropertiesAsAttributes()` to avoid name collisions and to be more descriptive.
13+
1014
## [1.0.0-beta] - 2020-03-03
1115
### Updated
1216
- Upgraded Laravel support to include 7.x
@@ -30,7 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3034
## [1.0.0-alpha] - 2020-01-17
3135
- Initial release
3236

33-
[Unreleased]: https://github.com/sprocketbox/laravel-toolkit/compare/v1.0.0-beta...develop
37+
[Unreleased]: https://github.com/sprocketbox/laravel-toolkit/compare/v2.0.0-beta...develop
38+
[2.0.0-beta]: https://github.com/sprocketbox/laravel-toolkit/compare/v1.0.0-beta...v2.0.0-beta
3439
[1.0.0-beta]: https://github.com/sprocketbox/laravel-toolkit/compare/v1.0.1-alpha...v1.0.0-beta
3540
[1.0.2-alpha]: https://github.com/sprocketbox/laravel-toolkit/compare/v1.0.1-alpha...v1.0.2-alpha
3641
[1.0.1-alpha]: https://github.com/sprocketbox/laravel-toolkit/compare/v1.0.0-alpha...v1.0.1-alpha

src/Operations/Operation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function __call($name, $arguments): self
5858
*
5959
* @return array
6060
*/
61-
protected function getAttributes(array $properties, $skipIfNull = false): array
61+
protected function getPropertiesAsAttributes(array $properties, $skipIfNull = false): array
6262
{
6363
$attributes = [];
6464

0 commit comments

Comments
 (0)