Skip to content

Commit e254fe6

Browse files
Release 0.12.4
1 parent 5e31b0d commit e254fe6

File tree

3 files changed

+62
-37
lines changed

3 files changed

+62
-37
lines changed

History.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11

2-
0.12.3 / 2013-10-04
2+
0.12.4 / 2013-11-12
3+
==================
4+
5+
* Coerce JSON values returned by `data` (@jugglinmike)
6+
* issue #284: when rendering HTML, use original data attributes (@Trott)
7+
* Introduce JSHint for automated code linting (@jugglinmike)
8+
* Prevent `find` from returning duplicate elements (@jugglinmike)
9+
* Implement function signature of `replaceWith` (@jugglinmike)
10+
* Implement function signature of `before` (@jugglinmike)
11+
* Implement function signature of `after` (@jugglinmike)
12+
* Implement function signature of `append`/`prepend` (@jugglinmike)
13+
* Extend iteration methods to accept nodes (@jugglinmike)
14+
* Improve `removeClass` (@jugglinmike)
15+
* Complete function signature of `addClass` (@jugglinmike)
16+
* Fix bug in `removeClass` (@jugglinmike)
17+
* Improve contributing.md (@jugglinmike)
18+
* Fix and document .css() (@jugglinmike)
19+
20+
0.12.3 / 2013-10-04
321
===================
422

523
* Add .toggleClass() function (@cyberthom)
@@ -10,7 +28,7 @@
1028
* add .css() (@yields)
1129
* Implements contents() (@jlep)
1230

13-
0.12.2 / 2013-09-04
31+
0.12.2 / 2013-09-04
1432
==================
1533

1634
* Correct implementation of `$.fn.text` (@jugglinmike)

Readme.md

+41-34
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ $('.apple').attr('id', 'favorite').html()
144144
> See http://api.jquery.com/attr/ for more information
145145
146146
#### .data( name, value )
147-
Method for getting and setting data attributes. Gets or sets the data attribute value for only the first element in the matched set.
147+
Method for getting and setting data attributes. Gets or sets the data attribute value for only the first element in the matched set.
148148

149149
```js
150150
$('<div data-apple-color="red"></div>').data()
@@ -643,40 +643,47 @@ These are some of the contributors that have made cheerio possible:
643643

644644
```
645645
project : cheerio
646-
repo age : 1 year, 10 months
647-
active : 169 days
648-
commits : 513
649-
files : 28
646+
repo age : 2 years, 1 month
647+
active : 196 days
648+
commits : 591
649+
files : 32
650650
authors :
651-
292 Matt Mueller 56.9%
652-
86 Matthew Mueller 16.8%
653-
44 David Chambers 8.6%
654-
15 Siddharth Mahendraker 2.9%
655-
13 Mike Pennisi 2.5%
656-
11 Adam Bretz 2.1%
657-
7 ironchefpython 1.4%
658-
5 Ryan Schmukler 1.0%
659-
5 Ben Sheldon 1.0%
660-
5 Jos Shepherd 1.0%
661-
4 Maciej Adwent 0.8%
662-
663-
2 Felix Böhm 0.4%
664-
2 Ali Farhadi 0.4%
665-
2 Chris Khoo 0.4%
666-
2 Wayne Larsen 0.4%
667-
2 alexbardas 0.4%
668-
2 Rob Ashton 0.4%
669-
1 nevermind 0.2%
670-
1 Felix Böhm 0.2%
671-
1 Jeremy Hubble 0.2%
672-
1 Manuel Alabor 0.2%
673-
1 Matt Liegey 0.2%
674-
1 Ben Atkin 0.2%
675-
1 Rob "Hurricane" Ashton 0.2%
676-
1 Simon Boudrias 0.2%
677-
1 Sindre Sorhus 0.2%
678-
1 mattym 0.2%
679-
1 Chris O'Hara 0.2%
651+
293 Matt Mueller 49.6%
652+
102 Matthew Mueller 17.3%
653+
52 Mike Pennisi 8.8%
654+
47 David Chambers 8.0%
655+
15 Siddharth Mahendraker 2.5%
656+
11 Adam Bretz 1.9%
657+
7 ironchefpython 1.2%
658+
6 Jarno Leppänen 1.0%
659+
5 Ben Sheldon 0.8%
660+
5 Ryan Schmukler 0.8%
661+
5 Jos Shepherd 0.8%
662+
4 Maciej Adwent 0.7%
663+
4 Amir Abu Shareb 0.7%
664+
3 Felix Böhm 0.5%
665+
666+
3 Andi Neck 0.5%
667+
2 alexbardas 0.3%
668+
2 Ali Farhadi 0.3%
669+
2 Thomas Heymann 0.3%
670+
2 Wayne Larsen 0.3%
671+
2 Rob Ashton 0.3%
672+
2 Chris Khoo 0.3%
673+
1 xiaohwan 0.2%
674+
1 Chris O'Hara 0.2%
675+
1 Felix Böhm 0.2%
676+
1 Jeremy Hubble 0.2%
677+
1 Manuel Alabor 0.2%
678+
1 Matt Liegey 0.2%
679+
1 Ben Atkin 0.2%
680+
1 Rich Trott 0.2%
681+
1 Rob "Hurricane" Ashton 0.2%
682+
1 Simon Boudrias 0.2%
683+
1 Sindre Sorhus 0.2%
684+
1 Timm Preetz 0.2%
685+
1 mattym 0.2%
686+
1 nevermind 0.2%
680687
```
681688

682689
## Special Thanks

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"selector",
99
"scraper"
1010
],
11-
"version": "0.12.3",
11+
"version": "0.12.4",
1212
"repository": {
1313
"type": "git",
1414
"url": "git://github.com/MatthewMueller/cheerio.git"

0 commit comments

Comments
 (0)