diff --git a/CHANGELOG b/CHANGELOG index b8d1db7c17..aecaab2395 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ -# 3.10.3 (2024-XX-XX) +# 3.10.3 (2024-05-16) - * n/a + * Fix missing ; in generated code # 3.10.2 (2024-05-14) diff --git a/src/Environment.php b/src/Environment.php index 6ba594b4f8..b035249b0f 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -43,12 +43,12 @@ */ class Environment { - public const VERSION = '3.10.3-DEV'; + public const VERSION = '3.10.3'; public const VERSION_ID = 301003; public const MAJOR_VERSION = 3; public const MINOR_VERSION = 10; public const RELEASE_VERSION = 3; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; private $charset; private $loader;