You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document provides an explanation of how to interpret HTML Tidy’s version number, e.g. from command line output as a result of `tidy -v`, and also addresses the role of the file `version.txt` in Tidy’s build process.
4
+
5
+
## Background
6
+
7
+
**HTML Tidy** uses a modified version of [Semantic Versioning](http://semver.org/), and so it’s important to understand what the version number of **HTML Tidy** means to you, and how it might impact your workflow.
8
+
9
+
When you execute `tidy -v` on the command line, you might see responses such as:
10
+
11
+
~~~
12
+
HTML Tidy for Mac OS X version 5.1.24
13
+
HTML Tidy for Mac OS X version 5.2.0
14
+
HTML Tidy for Mac OS X version 5.3.15
15
+
HTML Tidy for Mac OS X version 5.4.0
16
+
HTML Tidy for Mac OS X version 5.5.1
17
+
~~~
18
+
19
+
_Obviously_ 5.5.1 is higher than 5.2.0, right? This might lead you to consider replacing your stable installations of **HTML Tidy** 5.2.0 across the board in your production process, but this might lead you to trouble. A little word about the meaning of our version numbers might help clear things up.
20
+
21
+
## Major, Minor, Patch
22
+
23
+
### Major
24
+
25
+
When HTACG assumed responsibility of **HTML Tidy** from previous maintainers, we immediately declared that the first release would be version 5.0, in honor of finally being able to offer modern HTML5 support.
26
+
27
+
Barring some major, monumental, massive change to Tidy, or the [release of HTML6](https://blog.whatwg.org/html-is-the-new-html5), **HTML Tidy** will probably be major version 5 forever. Maybe future maintainers will want to be trendy and release **HTML Tidy 2025**, but that’s for them to decide.
28
+
29
+
### Minor
30
+
31
+
The minor version tells a lot more about the true version of Tidy that you have, but even so it’s not a simple matter that 5 > 2 and must be better. The minor number indicates **HTML Tidy**_release versions_ or _development versions_.
32
+
33
+
-**even numbered minor versions** indicate released versions of **HTML Tidy**. We provide binaries for releases, API documentation, and full support including cherry picking bug fixes back to them. In standard parlance, _released_ versions are _stable_ versions, meaning that the API is stable and you can generally expect Tidy’s output to be the same (other than as a result of bug fixes).
34
+
35
+
-**odd numbered minor versions** are development versions, or as is considered in many contexts _bleeding edge_ versions. HTACG do not provide binaries, and API documentation is not usually up to date, but you do have access to the latest bug fixes, newest features, and knowledge of where Tidy is going. The downside, though, is that we make absolutely no guarantees that:
36
+
37
+
- Output remains the same as in previous release versions.
38
+
- Output remains the same as in earlier patch versions in the same development series.
39
+
- Configuration options may be added.
40
+
- Configuration options may be deleted.
41
+
- Parts of the C API may be added or deleted without warning.
42
+
- In short, development versions are bleeding edge and likely to be unstable (in the API sense -- we try never commit code that will crash).
43
+
44
+
### Patch
45
+
46
+
The patch indicates the latest version of the current minor version number. As with minor version numbers, there is some variation in their meaning:
47
+
48
+
-**patches for even numbered minor versions** indicate whether the latest supported update for that released version. In general, we hope that the patch number remains at 0 forever, e.g., 5.2.0. However if we do backport one or more bug fixes, you might see, e.g., 5.2.1.
49
+
50
+
-**patches for odd numbered minor versions** indicate our progress in committing code that changes some aspect of **HTML Tidy**’s operation, such as the output it generates or a bug fix. Because **git** offers robust commit logging of its own, we won't generally bump the patch number for things such as documenting code, converting tabs to space, or even simplifying some piece of logic. You’ll see that lots of good things are happening if the patch number is really large, e.g., 5.7.289!
51
+
52
+
53
+
## Development
54
+
55
+
### The `version.txt` File
2
56
3
57
The **libTidy** version is controlled by the contents of `version.txt` in the root.
4
58
5
-
This file consists of two lines of dot (.) separated items. The first being the MAJOR, MINOR, and PATCH version values, and the second string is a date. Example -
59
+
This file consists of two lines of dot (.) separated items. The first being the **major**, **minor**, and **patch** version values, and the second string is a date. Example:
6
60
7
61
```
8
-
5.1.8
9
-
2015.09.04
62
+
5.3.15
63
+
2017.01.29
10
64
```
11
65
12
-
When cmake is run this file is read and two MACROS added to the compile flags -
66
+
When **cmake** is run, this file is read and two MACROS added to the compile flags:
**NOTE**: `tidyReleaseDate()` is marked deprecated!
44
-
45
-
The actual `versioning` of the library more or less follows the [Semantic Versioning](http://semver.org/) style.
97
+
### Git branches
46
98
47
99
When a `release` is done a release/5.0.0 **branch**, and a similar release/5.0.0 **tag** is created.
48
100
49
-
At that point the version.txt is set to the next, 5.1.0.
50
-
51
-
That is the `master` branch will contain the ongoing development. Any subsequent good bug fixes found for some time after that will be carefully tested and push back (cherry picked I think is the correct term) into the release/5.0.0, making it 5.0.1...
52
-
53
-
And on just about each fix, or feature addition to the `master` will bump the version to 5.1.1, 5.1.2, 5.1.3, and so on... even 5.1.4567 if necessary ;=)).
54
-
55
-
When ready for the next release, say some 6 months or so later, then a branch `release/5.2.0` would be created, and tagged, and the master version.txt moved on to 5.3.0, and so on...
56
-
57
-
That is, each `release` will have an `even` second digit, followed by .0, unless any subsequent fixes are pushed back, making it .1, ... probably not many of those... while the `master` develoment HEAD will have an `odd` second digit, followed by .0, incremented for just about each significant code change...
58
-
59
-
The intial MAJOR digit, 5, will be maintained while the **libTidy** API remains fully compatible, although there may be additions, extensions, as and when these are identified...
101
+
At that point the `version.txt` is set to the next, 5.1.0.
60
102
61
-
And throughout this, every effort will be made to keep `master`**stable** at all times, but would expect package managers to eventually really only pick up on the `release` branches, tags.
103
+
That is, the `master` branch will contain the ongoing development. Any subsequent good bug fixes found for some time after that will be carefully tested and push back (cherry picked I think is the correct term) into the release/5.0.0, making it 5.0.1...
62
104
63
-
In cases of significant code re-writes, major featues added, these would be done in branches until they are `stable` enought, and tested enough, to be merge back to `master`.
0 commit comments