From 4cf8161749c4ddfd31b587e6a2f123ee72a892cf Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Sat, 27 Aug 2016 03:00:56 +0900 Subject: [PATCH] Version 2.6.2 --- CHANGELOG.md | 8 ++++++++ lib/hamlit/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24c51d0d..7f4b6d0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). This change log is based upon [keep-a-changelog](https://github.com/olivierlacan/keep-a-changelog). +## [2.6.2](https://github.com/k0kubun/hamlit/compare/v2.6.1...v2.6.2) - 2016-08-27 + +### Added + +- Add cdata filter + [#84](https://github.com/k0kubun/hamlit/issues/84). *Thanks to @shmargum* +- Minimize string allocation on template comipilation using `# frozen_string_literal: true` + ## [2.6.1](https://github.com/k0kubun/hamlit/compare/v2.6.0...v2.6.1) - 2016-08-18 ### Fixed diff --git a/lib/hamlit/version.rb b/lib/hamlit/version.rb index 0343c652..0be09f1d 100644 --- a/lib/hamlit/version.rb +++ b/lib/hamlit/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Hamlit - VERSION = '2.6.1' + VERSION = '2.6.2' end