Version.h 1014 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // Version.h
  3. //
  4. // $Id: //poco/1.4/Foundation/include/Poco/Version.h#10 $
  5. //
  6. // Library: Foundation
  7. // Package: Core
  8. // Module: Version
  9. //
  10. // Version information for the POCO C++ Libraries.
  11. //
  12. // Copyright (c) 2004-2012, Applied Informatics Software Engineering GmbH.
  13. // and Contributors.
  14. //
  15. // SPDX-License-Identifier: BSL-1.0
  16. //
  17. #ifndef Foundation_Version_INCLUDED
  18. #define Foundation_Version_INCLUDED
  19. //
  20. // Version Information
  21. //
  22. // Since 1.6.0, we're using Semantic Versioning 2.0
  23. // (http://semver.org/spec/v2.0.0.html)
  24. //
  25. // Version format is 0xAABBCCDD, where
  26. // - AA is the major version number,
  27. // - BB is the minor version number,
  28. // - CC is the patch version number, and
  29. // - DD is the pre-release designation/number.
  30. // The pre-release designation hex digits have a special meaning:
  31. // 00: final/stable releases
  32. // Dx: development releases
  33. // Ax: alpha releases
  34. // Bx: beta releases
  35. //
  36. #define POCO_VERSION 0x01060000
  37. #endif // Foundation_Version_INCLUDED