Changeset 152

Show
Ignore:
Timestamp:
06/15/2007 17:32:25 (13 months ago)
Author:
why
Message:

* Rakefile: prepping for 0.6 release.

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/CHANGELOG

    r112 r152  
     1= 0.6 
     2=== 15th June, 2007 
     3* Hpricot for JRuby -- nice work Ola Bini! 
     4* Inline Markaby for Hpricot documents. 
     5* XML tags and attributes are no longer downcased like HTML is. 
     6* new syntax for grabbing everything between two elements using a Range in the search method: (doc/("font".."font/br")) or in nodes_at like so: (doc/"font").nodes_at("*".."br"). Only works with either a pair of siblings or a set of a parent and a sibling.  
     7* Ignore self-closing endings on tags (such as form) which are containers. Treat them like open parent tags. Reported by Jonathan Nichols on the hpricot list. 
     8* Escaping of attributes, yanked from Jim Weirich and Sam Ruby's work in Builder. 
     9* Element#raw_attributes gives unescaped data.  Element#attributes gives escaped. 
     10* Added: Elements#attr, Elements#remove_attr, Elements#remove_class. 
     11* Added: Traverse#preceding, Traverse#following, Traverse#previous, Traverse#next.  
     12 
    113= 0.5 
    214=== 31rd January, 2007 
  • trunk/Rakefile

    r148 r152  
    99NAME = "hpricot" 
    1010REV = `svn info`[/Revision: (\d+)/, 1] rescue nil 
    11 VERS = ENV['VERSION'] || "0.5" + (REV ? ".#{REV}" : "") 
     11VERS = ENV['VERSION'] || "0.6" + (REV ? ".#{REV}" : "") 
    1212PKG = "#{NAME}-#{VERS}" 
    1313BIN = "*.{bundle,jar,so,obj,pdb,lib,def,exp}"