Defines for Tokyo missing in tmsdefs.inc

I tried to compile TMS Component Pack 8.5.4.0 under Delphi 10.2 Tokyo, which fails with dozens of errors.
This is caused by the tmsdef.inc, which is missing the defines for the new compiler VER320.
This could be fixed by adding:
{$IFDEF VER320}
  {$DEFINE DELPHI2_LVL}
  {$DEFINE DELPHI3_LVL}
  {$DEFINE DELPHI4_LVL}
  {$DEFINE DELPHI5_LVL}
  {$DEFINE DELPHI6_LVL}
  {$DEFINE DELPHI7_LVL}
  {$DEFINE DELPHI9_LVL}
  {$DEFINE DELPHI2006_LVL}
  {$DEFINE DELPHI2007_LVL}
  {$DEFINE DELPHI2010_LVL}
  {$DEFINE DELPHIXE_LVL}
  {$DEFINE DELPHIXE2_LVL}
  {$DEFINE DELPHIXE3_LVL}
  {$DEFINE DELPHIXE4_LVL}
  {$DEFINE DELPHIXE5_LVL}
  {$DEFINE DELPHIXE6_LVL}
  {$DEFINE DELPHIXE7_LVL}
  {$DEFINE DELPHIXE8_LVL}
  {$DEFINE DELPHIXE9_LVL}
  {$DEFINE DELPHIXE10_LVL}
  {$DEFINE DELPHIXE11_LVL}
  {$DEFINE DELPHI_TOUCH}
  {$DEFINE DELPHI_UNICODE}
  {$DEFINE DELPHI11_LVL}
  {$IFNDEF BCB}
    {$DEFINE ISDELPHI}
  {$ENDIF}
{$ENDIF}

I guess you do not have the latest download. Please redownload the latest distribution and all should be fine.

I've checked the official setup of v8.5.4.0 downloaded on 2017-03-14 again, the contained tmsdefs.inc is dated of 2016-04-29 and DOES NOT have any defines for VER320 at all!

We did an update of the installer on 2017-03-17 and this has all correct files for Tokyo, so, again, please just redownload the installer.

The updated setup works fine.