From 7f4291566cf7cac3be222a933e01a2bed97532b1 Mon Sep 17 00:00:00 2001 From: Martin Angers Date: Wed, 27 Jul 2016 21:43:13 -0400 Subject: [PATCH] tag v1.0.0, closes #124 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b6550fe..71b712f 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ Please note that because of the net/html dependency, goquery requires Go1.1+. **Note that goquery's API is now stable, and will not break.** +* **2016-07-27 (v1.0.0)** : Tag version 1.0.0. * **2016-06-15** : Invalid selector strings internally compile to a `Matcher` implementation that never matches any node (instead of a panic). So for example, `doc.Find("~")` returns an empty `*Selection` object. * **2016-02-02** : Add `NodeName` utility function similar to the DOM's `nodeName` property. It returns the tag name of the first element in a selection, and other relevant values of non-element nodes (see godoc for details). Add `OuterHtml` utility function similar to the DOM's `outerHTML` property (named `OuterHtml` in small caps for consistency with the existing `Html` method on the `Selection`). * **2015-04-20** : Add `AttrOr` helper method to return the attribute's value or a default value if absent. Thanks to [piotrkowalczuk][piotr].