Enigma  3.2.0
A Simple, Reliable and Efficient Encryption Tool
Version.hpp
Go to the documentation of this file.
1 #pragma once
2 #ifndef ENIGMA_VERSION_H
3 #define ENIGMA_VERSION_H
4 
6 #define ENIGMA_VERSION_STR ENIGMA_VERSION
7 
9 #define ENIGMA_VERSION_DIV 2, 2, 0
10 
11 #define ENIGMA_LICENSE \
12  "The MIT License (MIT)\n" \
13  "Copyright (c) Bader-Eddine Ouaich and other contributors\n" \
14  "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n" \
15  "The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n" \
16  "THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.";
17 
18 
19 /*
20 * Reminder:
21 >> Enigma.rc will include this file to get versions as they change, no need to modify version in any other place than here.
22 >>> Also make sure you update version in doxyfile using doxywizard
23 
24 * https://semver.org/
25 * # when minor version is incremented, patch must reset to 0
26 * # when major version is incremented, minor and patch must reset to 0
27 *
28 * Given a version number MAJOR.MINOR.PATCH, increment the:
29 * - 1. MAJOR version when you make incompatible API changes (e.g. installer-users have to modify their infrastructure (phone/tablet/PC/web-server/firewall config/etc) in some way), when its incremented, minor and patch are back to 0.
30 * - 2. MINOR version when you add functionality in a backwards compatible manner (e.g. passing additional data to an already-provisioned API or adding any end-user functionality that does not affect the installation-requirements)
31 * - 3. PATCH version when you make backwards compatible bug fixes (e.g. fixing any end-user bug that does not affect the installation requirements)
32 * Additional labels for pre-release and build metadata are available
33 * as extensions to the MAJOR.MINOR.PATCH format.
34 */
35 
36 #endif // !ENIGMA_VERSION_H