Release 2.0.3 (#3879)

This commit is contained in:
Kevin Papst
2023-02-25 20:37:52 +01:00
committed by GitHub
parent 068e9425eb
commit 2cb29bfef5
2 changed files with 3 additions and 3 deletions

View File

@@ -17,11 +17,11 @@ class Constants
/** /**
* The current release version * The current release version
*/ */
public const VERSION = '2.0.2'; public const VERSION = '2.0.3';
/** /**
* The current release: major * 10000 + minor * 100 + patch * The current release: major * 10000 + minor * 100 + patch
*/ */
public const VERSION_ID = 20002; public const VERSION_ID = 20003;
/** /**
* The software name * The software name
*/ */

View File

@@ -45,7 +45,7 @@ class Customer implements EntityWithMetaFields, EntityWithBudget
#[Serializer\Expose] #[Serializer\Expose]
#[Serializer\Groups(['Default'])] #[Serializer\Groups(['Default'])]
#[Exporter\Expose(label: 'name')] #[Exporter\Expose(label: 'name')]
private ?string $name; private ?string $name = null;
#[ORM\Column(name: 'number', type: 'string', length: 50, nullable: true)] #[ORM\Column(name: 'number', type: 'string', length: 50, nullable: true)]
#[Assert\Length(max: 50)] #[Assert\Length(max: 50)]
#[Serializer\Expose] #[Serializer\Expose]