Skip to content

Commit f5c5de8

Browse files
committed
update readme for new release
1 parent 46c32ce commit f5c5de8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Please note that because of the net/html dependency, goquery requires Go1.1+.
1313
$ go get github.com/PuerkitoBio/goquery
1414

1515
(optional) To run unit tests:
16-
16+
1717
$ cd $GOPATH/src/github.com/PuerkitoBio/goquery
1818
$ go test
1919

@@ -26,6 +26,7 @@ Please note that because of the net/html dependency, goquery requires Go1.1+.
2626

2727
**Note that goquery's API is now stable, and will not break.**
2828

29+
* **2017-02-12 (v1.1.0)** : Add `SetHtml` and `SetText` (thanks to @glebtv).
2930
* **2016-12-29 (v1.0.2)** : Optimize allocations for `Selection.Text` (thanks to @radovskyb).
3031
* **2016-08-28 (v1.0.1)** : Optimize performance for large documents.
3132
* **2016-07-27 (v1.0.0)** : Tag version 1.0.0.
@@ -85,7 +86,7 @@ import (
8586
)
8687

8788
func ExampleScrape() {
88-
doc, err := goquery.NewDocument("http://metalsucks.net")
89+
doc, err := goquery.NewDocument("http://metalsucks.net")
8990
if err != nil {
9091
log.Fatal(err)
9192
}

0 commit comments

Comments
 (0)