diff --git a/CHANGELOG.md b/CHANGELOG.md index 499275b1..021a46d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## Version 3.3.4 + * Fix `bufprintf` to correctly work on Windows MinGW-w64 so strings are properly written to the buffer. diff --git a/lib/redcarpet.rb b/lib/redcarpet.rb index 8ff4a409..8796b118 100644 --- a/lib/redcarpet.rb +++ b/lib/redcarpet.rb @@ -2,7 +2,7 @@ require 'redcarpet/compat' module Redcarpet - VERSION = '3.3.3' + VERSION = '3.3.4' class Markdown attr_reader :renderer diff --git a/redcarpet.gemspec b/redcarpet.gemspec index dc117136..a08e0cec 100644 --- a/redcarpet.gemspec +++ b/redcarpet.gemspec @@ -1,10 +1,10 @@ # encoding: utf-8 Gem::Specification.new do |s| s.name = 'redcarpet' - s.version = '3.3.3' + s.version = '3.3.4' s.summary = "Markdown that smells nice" s.description = 'A fast, safe and extensible Markdown to (X)HTML parser' - s.date = '2015-09-24' + s.date = '2015-12-25' s.email = 'vicent@github.com' s.homepage = 'http://github.com/vmg/redcarpet' s.authors = ["Natacha Porté", "Vicent Martí"]