Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmueller committed Nov 20, 2011
1 parent 22aa222 commit 1ac35bc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
0.3.0 / 2011-11-19
=================
* Now using htmlparser2 for parsing (2x speed increase, cleaner, actively developed)
* Added benchmark directory for future speed tests
* $("...").dom() was funky, so it was removed in favor of $("...").get(). $.dom() still works the same.
* $.root now correctly static across all instances of $
* Added a screencast

0.2.2 / 2011-11-9
=================

Expand Down
2 changes: 1 addition & 1 deletion lib/cheerio.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
trimLeft = /^\s+/;
trimRight = /\s+$/;
cheerio.fn = cheerio.prototype = {
cheerio: "0.2.2",
cheerio: "0.3.0",
constructor: cheerio,
init: function(selector, context, root) {
var elems, match;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "cheerio",
"description": "Tiny, fast, and elegant implementation of core jQuery designed specifically for the server",
"keywords": ["htmlparser", "jquery", "selector", "scraper"],
"version": "0.2.2",
"version": "0.3.0",
"repository": {
"type": "git",
"url": "git://github.com/MatthewMueller/cheerio.git"
Expand Down
2 changes: 1 addition & 1 deletion src/cheerio.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cheerio = do ->
trimRight = /\s+$/

cheerio.fn = cheerio.prototype =
cheerio : "0.2.2"
cheerio : "0.3.0"
constructor: cheerio
init: (selector, context, root) ->
# Handle $(""), $(null), or $(undefined)
Expand Down

0 comments on commit 1ac35bc

Please sign in to comment.