1# Changes
 2
 3## Version 1.2
 4
 5Previously, if a Host declaration or a value had trailing whitespace, that
 6whitespace would have been included as part of the value. This led to unexpected
 7consequences. For example:
 8
 9```
10Host example       # A comment
11    HostName example.com      # Another comment
12```
13
14Prior to version 1.2, the value for Host would have been "example " and the
15value for HostName would have been "example.com      ". Both of these are
16unintuitive.
17
18Instead, we strip the trailing whitespace in the configuration, which leads to
19more intuitive behavior.