Skip to content

Commit

Permalink
Redcarpet v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robin850 committed Oct 11, 2014
1 parent 7312c25 commit 873ae35
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

## Version 3.2.0

* Add a `Safe` renderer to deal with users' input. The `escape_html`
and `safe_links_only` options are turned on by default.

Expand Down Expand Up @@ -29,6 +31,11 @@

*jcheatham*

* Add `=` to the whitelist of escaped chars so it can be used inside
highlighted snippets.

*jcheatham*

* Convert trailing single quotes to curly quotes. For example,
`Road Trippin'` now converts to `Road Trippin’`.

Expand Down
2 changes: 1 addition & 1 deletion lib/redcarpet.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'redcarpet.so'

module Redcarpet
VERSION = '3.1.1'
VERSION = '3.2.0'

class Markdown
attr_reader :renderer
Expand Down
9 changes: 6 additions & 3 deletions redcarpet.gemspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# encoding: utf-8
Gem::Specification.new do |s|
s.name = 'redcarpet'
s.version = '3.1.1'
s.version = '3.2.0'
s.summary = "Markdown that smells nice"
s.description = 'A fast, safe and extensible Markdown to (X)HTML parser'
s.date = '2014-02-17'
s.date = '2014-10-11'
s.email = 'vicent@github.com'
s.homepage = 'http://github.com/vmg/redcarpet'
s.authors = ["Natacha Porté", "Vicent Martí"]
Expand Down Expand Up @@ -41,16 +41,19 @@ Gem::Specification.new do |s|
lib/redcarpet/render_man.rb
lib/redcarpet/render_strip.rb
redcarpet.gemspec
test/test_helper.rb
test/benchmark.rb
test/custom_render_test.rb
test/html5_test.rb
test/html_render_test.rb
test/html_toc_render_test.rb
test/markdown_test.rb
test/pathological_inputs_test.rb
test/redcarpet_compat_test.rb
test/safe_render_test.rb
test/smarty_html_test.rb
test/smarty_pants_test.rb
test/stripdown_render_test.rb
test/test_helper.rb
]
# = MANIFEST =
s.test_files = s.files.grep(%r{^test/})
Expand Down

0 comments on commit 873ae35

Please sign in to comment.