Skip to content

Commit b607bc4

Browse files
Release 0.2.1
1 parent f05f0c5 commit b607bc4

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

History.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
0.2.1 / 2011-11-5
2+
=================
3+
4+
* Fixed before(...) & after(...) if there is no parent (Closes Issue: #2)
5+
* Comments now rendered correctly (Closes Issue: #5)
6+
7+
18
> 0.2.0 / 2011-10-31
29
==================
310

lib/cheerio.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
trimLeft = /^\s+/;
1414
trimRight = /\s+$/;
1515
cheerio.fn = cheerio.prototype = {
16-
cheerio: "0.2.0",
16+
cheerio: "0.2.1",
1717
constructor: cheerio,
1818
init: function(selector, context, root) {
1919
var elems, match;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "cheerio",
44
"description": "Tiny, fast, and elegant implementation of core jQuery designed specifically for the server",
55
"keywords": ["htmlparser", "jquery", "selector", "scraper"],
6-
"version": "0.2.0",
6+
"version": "0.2.1",
77
"repository": {
88
"type": "git",
99
"url": "git://github.com/MatthewMueller/cheerio.git"

src/cheerio.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cheerio = do ->
1818
trimRight = /\s+$/
1919

2020
cheerio.fn = cheerio.prototype =
21-
cheerio : "0.2.0"
21+
cheerio : "0.2.1"
2222
constructor: cheerio
2323
init: (selector, context, root) ->
2424
# Handle $(""), $(null), or $(undefined)

0 commit comments

Comments
 (0)