lazarus/components/lazutils/lazversion.pas
mattias 8e5cf7e2e6 set fixes version 2.0.0RC3
git-svn-id: branches/fixes_2_0@59876 -
2018-12-20 09:35:35 +00:00

34 lines
886 B
ObjectPascal

{
/***************************************************************************
lazversion.pas
-------------------
Version numbers for Lazarus
***************************************************************************/
*****************************************************************************
This file is part of the LazUtils package
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
unit LazVersion;
{$mode objfpc}{$H+}
interface
const
laz_major = 2;
laz_minor = 0;
laz_release = 0;
laz_patch = 3;
laz_fullversion = ((laz_major * 100 + laz_minor) * 100 + laz_release) * 100 + laz_patch;
laz_version = '2.0.0.3';
implementation
end.