-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 2.32 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html lang="en" dir="ltr">
<head>
<title>DelVer Specification</title>
<link rel="stylesheet" href="container.css">
</head>
<body class="container">
<h1>DelVer</h1>
<p>DelVer is based off of <a rel="noopener" target="_blank" href="https://semver.org/">Semantic Versioning 2.0</a>, DelVer is currently used on the majority of projects by Discord Extreme List (bot, website, lgbt-website, blog-casper, etc.)</p>
<br />
<h2>Structure</h2>
<p>The structure (by release type) for DelVer is shown below:</p>
<h3>Production/Stable Releases</h3>
<p>vX.X.X-Release</p>
<p><strong>Example:</strong> v1.0.0-Release</p>
<h3>Beta Releases</h3>
<p>vX.X.X-Beta.X</p>
<p><strong>Example:</strong> v1.0.0-Beta.1</p>
<h3>Alpha Releases</h3>
<p>vX.X.X-Alpha.X</p>
<p><strong>Example:</strong> v1.0.0-Alpha.1</p>
<br />
<h2>Versioning Layout</h2>
<p>The verisoning layout for DelVer is shown below:</p>
<h3>Production/Stable Releases</h3>
<p>vA.B.C</p>
<p>
A signifies Critical Update - Critical updates are a complete redesign of the frontend theme(s) or a complete rewrite of the backend code.
<br />
B signifies Feature Update - A feature update is an update that includes features such as Vanity URLs, etc.
<br />
C signifies Minor Update - Minor updates are typically either hotfixes, bug fixes or very minor feature adjustments.
</p>
<h3>Beta/Alpha Releases</h3>
<p>vA.B.C-Channel.D</p>
<p>
A signifies Critical Update - Critical updates are a complete redesign of the frontend theme(s) or a complete rewrite of the backend code.
<br />
B signifies Feature Update - A feature update is an update that includes features such as Vanity URLs, etc.
<br />
C signifies Minor Update - Minor updates are typically either hotfixes, bug fixes or very minor feature adjustments.
<br />
<br />
Channel signifies the release channel - Either Alpha or Beta.
<br />
D signifies the Alpha/Beta version - There can be multiple Alpha and Beta builds for a single version.
</p>
</body>
</html>