diff --git a/CHANGELOG.md b/CHANGELOG.md index 27b8dd0a1..ced19870e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,29 @@ Changelog # 2.x -## 2.5.x +## 2.7.x + +### 2.7.0 + +- Fixes [#27](https://github.com/raptorjs/marko/issues/27) - IE conditional comments (e.g., ``) are automatically preserved. Previously, all HTML comments were stripped out when loading a template. For example: +- Added support for `` to enable comments to preserved in a template. For example: + +```xml + +Hello + +World +``` + +Output: + +```xml +Hello + +World +``` + +## 2.6.x ### 2.6.0 @@ -15,6 +37,8 @@ Changelog - Bad: `fs.readFile(path, 'utf8')` - Good: `fs.readFile(path, {encoding: 'utf8'})` +## 2.5.x + ### 2.5.0 - Fixes #78 - Custom Node.js require extension for Marko template files. Example usage: diff --git a/package.json b/package.json index a174c1fa7..7d0263cdf 100644 --- a/package.json +++ b/package.json @@ -63,5 +63,5 @@ "publishConfig": { "registry": "https://registry.npmjs.org/" }, - "version": "2.6.0" + "version": "2.7.0" }