Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkcgen <kcgen@users.noreply.github.com>2022-09-23 02:11:57 +0300
committerkcgen <kcgen@users.noreply.github.com>2022-09-23 02:11:57 +0300
commit25dfd7f6b91209ad4373c7b4eda86f26fd139c04 (patch)
treee57dc273718d00a0ae70efcba5942723aca2a8b6
parentba9a9b9c5ac0de840a74308015bdd64928c5d63d (diff)
Codify the use of Semantic Versioningkc/semver-1
-rw-r--r--src/config.h.in8
-rw-r--r--src/platform/visualc/config.h10
2 files changed, 15 insertions, 3 deletions
diff --git a/src/config.h.in b/src/config.h.in
index ade0c1762..7fd33b868 100644
--- a/src/config.h.in
+++ b/src/config.h.in
@@ -24,7 +24,13 @@
/* Version and branding tweaks
*/
-// Emulator version
+// Emulator Semantic Version (MAJOR.MINOR.PATCH), incremented as follows:
+// - MAJOR version when you make incompatible API changes
+// - MINOR version when you add functionality in a backwards compatible manner
+// - PATCH version when you make backwards compatible bug fixes
+// Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
+// Ref: https://semver.org/
+
#define VERSION "@version@"
/* Operating System
diff --git a/src/platform/visualc/config.h b/src/platform/visualc/config.h
index c07320438..0bbaf1309 100644
--- a/src/platform/visualc/config.h
+++ b/src/platform/visualc/config.h
@@ -1,5 +1,11 @@
-/* Version number of package */
-#define VERSION "0.79.0"
+// Emulator Semantic Version (MAJOR.MINOR.PATCH), incremented as follows:
+// - MAJOR version when you make incompatible API changes
+// - MINOR version when you add functionality in a backwards compatible manner
+// - PATCH version when you make backwards compatible bug fixes
+// Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
+// Ref: https://semver.org/
+
+#define VERSION "0.80.0-alpha"
/* This macro is going to be overriden via CI */
#define DOSBOX_DETAILED_VERSION "git"