History.rdoc in tailor-1.1.1 vs History.rdoc in tailor-1.1.2
- old
+ new
@@ -1,5 +1,19 @@
+=== 1.1.2 2012-06-01
+
+* gh-101[https://github.com/turboladen/tailor/issues/101]
+ * Tailor now handles code that uses backslashes to break up statements to
+ multiple lines. Note that this is somewhat of a hack, since Ripper does not
+ tokenize these backslashes--it actually just treats what we see as 2 lines
+ of code as a single line of code. In order to preserve line numbering and
+ indentation tracking, tailor replaces the backslash with a special comment
+ that it can detect and handle accordingly. While this isn't ideal, given
+ the current design, it seemed like the way to deal with this.
+* gh-103[https://github.com/turboladen/tailor/issues/103]
+ * Tailor now properly handles string interpolation inside string
+ interpolation.
+
=== 1.1.1 2012-05-31
* gh-110[https://github.com/turboladen/tailor/issues/110]
* Tailor now exits with 0 if non-error problems are found.
@@ -37,11 +51,11 @@
* CLI options now override config file options for all file sets (previously,
only the :default file set's option would get overridden by the CLI option).
=== 1.0.1 2012-04-23
-* gh-104: Fixed incorrect rendering of config file when using
- `tailor --create-config`.
+* gh-104[https://github.com/turboladen/tailor/issues/104]:
+ * Fixed incorrect rendering of config file when using `tailor --create-config`.
=== 1.0.0 2012-04-17
* Big update to config file.
* Fix for indentation checking on nested Hashes.