Skip to content

Commit fe7c827

Browse files
committed
remove section on semver, as electron does not fit its mold
1 parent cc80930 commit fe7c827

File tree

1 file changed

+3
-28
lines changed

1 file changed

+3
-28
lines changed

docs/tutorial/electron-versioning.md

Lines changed: 3 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,9 @@
22

33
If you've been using Node and npm for a while, you are probably aware of [Semantic Versioning], or SemVer for short. It's a convention for specifying version numbers for software that helps communicate intentions to the users of your software.
44

5-
## Overview of Semantic Versioning
6-
7-
Semantic versions are always made up of (at least) three numbers:
8-
9-
```
10-
major.minor.patch
11-
```
12-
13-
Semantic version numbers are bumped (incremented) using the following rules:
14-
15-
* **Major** is for changes that break backwards compatibility.
16-
* **Minor** is for new features that don't break backwards compatibility.
17-
* **Patch** is for bug fixes and other minor changes.
18-
19-
A simple mnemonic for remembering this scheme is as follows:
20-
21-
```
22-
breaking.feature.fix
23-
```
24-
25-
Unstable versions may also have a _pre-release identifier_. See
26-
[Prereleases](#prereleases).
27-
28-
## Electron Versioning
29-
305
Due to its dependency on Node and Chromium, it is not possible for the Electron
31-
project to adhere to a strict SemVer policy. **You should therefore always
32-
reference a specific version of Electron.**
6+
project to adhere to a strict [Semantic Versioning] policy. **You should
7+
therefore always reference a specific version of Electron.**
338

349
Electron version numbers are bumped using the following rules:
3510

@@ -75,4 +50,4 @@ The `latest` and `next` [npm dist tags] are also used:
7550
[Semantic Versioning]: http://semver.org
7651
[pre-release identifier]: http://semver.org/#spec-item-9
7752
[npm dist tags]: https://docs.npmjs.com/cli/dist-tag
78-
[normal version]: http://semver.org/#spec-item-2
53+
[normal version]: http://semver.org/#spec-item-2

0 commit comments

Comments
 (0)