diff --git a/CHANGELOG.txt b/CHANGELOG.txt index d5fb100..cb2970a 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,7 @@ +2009-04-23 Mina Naguib + Release 0.3.7 + - More fixes for recent versions of hpricot - Thanks Luc Chauvin + 2009-04-07 Mina Naguib Release 0.3.6 - Fixes for recent versions of hpricot: diff --git a/lib/hpricot_scrub/hpricot_scrub.rb b/lib/hpricot_scrub/hpricot_scrub.rb index 3ac1dbc..bea6e2e 100644 --- a/lib/hpricot_scrub/hpricot_scrub.rb +++ b/lib/hpricot_scrub/hpricot_scrub.rb @@ -147,6 +147,10 @@ class BaseEle include Scrub::Scrubbable end + class CData + include Scrub::Scrubbable + end + class Comment include Scrub::Scrubbable diff --git a/lib/hpricot_scrub/version.rb b/lib/hpricot_scrub/version.rb index e67a578..d7f0e14 100644 --- a/lib/hpricot_scrub/version.rb +++ b/lib/hpricot_scrub/version.rb @@ -2,7 +2,7 @@ module HpricotScrub #:nodoc: module VERSION #:nodoc: MAJOR = 0 MINOR = 3 - TINY = 6 + TINY = 7 STRING = [MAJOR, MINOR, TINY].join('.') end