Skip to content

Commit

Permalink
version 9.01
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed May 14, 2022
1 parent 8c240f5 commit 82a8b32
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dm/src/dmc/cdef.d
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ extern (C++):
nothrow:
@safe:

enum VERSION = "9.00.0"; // for banner and imbedding in .OBJ file
enum VERSIONHEX = "0x900"; // for __DMC__ macro
enum VERSION = "9.01.0"; // for banner and imbedding in .OBJ file
enum VERSIONHEX = "0x901"; // for __DMC__ macro
enum VERSIONINT = 0x900; // for precompiled headers and DLL version

version (SCPP)
Expand Down Expand Up @@ -370,20 +370,20 @@ else
{
debug
{
enum COPYRIGHT = "Copyright (C) Digital Mars 2000-2019. All Rights Reserved.
enum COPYRIGHT = "Copyright (C) Digital Mars 2000-2022. All Rights Reserved.
Written by Walter Bright
*****BETA TEST VERSION*****";
}
else
{
version (linux)
{
enum COPYRIGHT = "Copyright (C) Digital Mars 2000-2019. All Rights Reserved.
enum COPYRIGHT = "Copyright (C) Digital Mars 2000-2022. All Rights Reserved.
Written by Walter Bright, Linux version by Pat Nelson";
}
else
{
enum COPYRIGHT = "Copyright (C) Digital Mars 2000-2019. All Rights Reserved.
enum COPYRIGHT = "Copyright (C) Digital Mars 2000-2022. All Rights Reserved.
Written by Walter Bright";
}
}
Expand Down

0 comments on commit 82a8b32

Please sign in to comment.