diff --git a/CHANGELOG.md b/CHANGELOG.md index 3aebae2f..55808799 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # CHANGELOG +## 0.1.0 + +I realized I wasn't properly following [semver](http://semver.org) for interface +changes and new features. Starting from this release, semver will be followed. + + * Whitelist table section elements in sanitization filter #55 mojavelinux + * Update readme typo #57 envygeeks + * TOC unicode characters and anchor names for Ruby > 1.9 #64 jakedouglas/non_english_anchors + * Add :skip_tags option for AutolinkFilter #65 pengwynn + * Fix CI dependency issues #67 jch + * Fix ignored test and add Ruby 2.0 to CI. #71, #72 tricknotes + ## 0.0.14 * Remove unused can_access_repo? method jch diff --git a/lib/html/pipeline/version.rb b/lib/html/pipeline/version.rb index 623323bc..8b9751c0 100644 --- a/lib/html/pipeline/version.rb +++ b/lib/html/pipeline/version.rb @@ -1,5 +1,5 @@ module HTML class Pipeline - VERSION = "0.0.14" + VERSION = "0.1.0" end end