HTML Tidy  5.4.0
The HTACG Tidy HTML Project
VERSION.md
Go to the documentation of this file.
1 # HTML Tidy Versioning {#version}
2 
3 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_ or _next_ 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
56 
57 The **libTidy** version is controlled by the contents of `version.txt` in the root.
58 
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:
60 
61 ```
62 5.3.15
63 2017.01.29
64 ```
65 
66 When **CMake** is run, this file is read and two macros are added to the compile flags:
67 
68 ```
69 add_definitions ( -DLIBTIDY_VERSION="${LIBTIDY_VERSION}" )
70 add_definitions ( -DRELEASE_DATE="${tidy_YEAR}/${tidy_MONTH}/${tidy_DAY}" )
71 ```
72 
73 And in `CMakeLists.txt` there is the posibility to define another macro, when and if required:
74 
75 ```
76 # add_definitions ( -DRC_NUMBER="D231" )
77 ```
78 
79 These macros are put in `static const char` strings in **libTidys**’s internal- only `src/version.h` file:
80 
81 ~~~
82 static const char TY_(release_date)[] = RELEASE_DATE;
83 #ifdef RC_NUMBER
84 static const char TY_(library_version)[] = LIBTIDY_VERSION "." RC_NUMBER;
85 #else
86 static const char TY_(library_version)[] = LIBTIDY_VERSION;
87 #endif
88 ~~~
89 
90 These strings are returned respectively by the **libTidy** API functions:
91 
92 ```
93 TIDY_EXPORT ctmbstr TIDY_CALL tidyLibraryVersion(void);
94 TIDY_EXPORT ctmbstr TIDY_CALL tidyReleaseDate(void);
95 ```
96 
97 ### Git branches
98 
99 Starting with HTML Tidy 5.4.0 release, our branching scheme aligns nicely with our version numbering scheme. Please consult [BRANCHES.md](BRANCHES.md).
100 
101 
102 Updated: 20170210
103  Date: 20150904