File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Please note that because of the net/html dependency, goquery requires Go1.1+.
13
13
$ go get github.com/PuerkitoBio/goquery
14
14
15
15
(optional) To run unit tests:
16
-
16
+
17
17
$ cd $GOPATH/src/github.com/PuerkitoBio/goquery
18
18
$ go test
19
19
@@ -26,6 +26,7 @@ Please note that because of the net/html dependency, goquery requires Go1.1+.
26
26
27
27
** Note that goquery's API is now stable, and will not break.**
28
28
29
+ * ** 2017-02-12 (v1.1.0)** : Add ` SetHtml ` and ` SetText ` (thanks to @glebtv ).
29
30
* ** 2016-12-29 (v1.0.2)** : Optimize allocations for ` Selection.Text ` (thanks to @radovskyb ).
30
31
* ** 2016-08-28 (v1.0.1)** : Optimize performance for large documents.
31
32
* ** 2016-07-27 (v1.0.0)** : Tag version 1.0.0.
@@ -85,7 +86,7 @@ import (
85
86
)
86
87
87
88
func ExampleScrape () {
88
- doc , err := goquery.NewDocument (" http://metalsucks.net" )
89
+ doc , err := goquery.NewDocument (" http://metalsucks.net" )
89
90
if err != nil {
90
91
log.Fatal (err)
91
92
}
You can’t perform that action at this time.
0 commit comments