File tree 3 files changed +62
-37
lines changed
3 files changed +62
-37
lines changed Original file line number Diff line number Diff line change 1
1
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
3
21
===================
4
22
5
23
* Add .toggleClass() function (@cyberthom )
10
28
* add .css() (@yields )
11
29
* Implements contents() (@jlep )
12
30
13
- 0.12.2 / 2013-09-04
31
+ 0.12.2 / 2013-09-04
14
32
==================
15
33
16
34
* Correct implementation of ` $.fn.text ` (@jugglinmike )
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ $('.apple').attr('id', 'favorite').html()
144
144
> See http://api.jquery.com/attr/ for more information
145
145
146
146
#### .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.
148
148
149
149
``` js
150
150
$ (' <div data-apple-color="red"></div>' ).data ()
@@ -643,40 +643,47 @@ These are some of the contributors that have made cheerio possible:
643
643
644
644
```
645
645
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
650
650
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%
680
687
```
681
688
682
689
## Special Thanks
Original file line number Diff line number Diff line change 8
8
" selector" ,
9
9
" scraper"
10
10
],
11
- "version" : " 0.12.3 " ,
11
+ "version" : " 0.12.4 " ,
12
12
"repository" : {
13
13
"type" : " git" ,
14
14
"url" : " git://github.com/MatthewMueller/cheerio.git"
You can’t perform that action at this time.
0 commit comments