diff --git a/CHANGELOG.md b/CHANGELOG.md index fbe095f..343741d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.6] - 2022-10-24 + +### Added +- Added missing properties `strEthnicity` and `strStatus` in `Player` entity + ## [1.3.5] - 2022-09-26 ### Added diff --git a/src/Entity/Player/Player.php b/src/Entity/Player/Player.php index 53a50a7..cefcebf 100644 --- a/src/Entity/Player/Player.php +++ b/src/Entity/Player/Player.php @@ -29,6 +29,8 @@ class Player public ?string $strKit; public ?string $strAgent; public ?string $strBirthLocation; + public ?string $strEthnicity; + public ?string $strStatus; public ?string $strDescriptionEN; public ?string $strDescriptionDE; public ?string $strDescriptionFR;