From e53c314452d196ab0ff2a07e494e5632b5cf4503 Mon Sep 17 00:00:00 2001 From: Martin Angers Date: Mon, 10 Sep 2012 11:17:34 -0400 Subject: [PATCH] add version and changelog --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index fb7d064..b0fb71a 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ Once this is done, install GoQuery: `go get github.com/PuerkitoBio/goquery` +## Changelog + +* **v0.1** : Initial release. See TODOs for a list of upcoming features. + ## API GoQuery exposes two classes, `Document` and `Selection`. Unlike jQuery, which is loaded as part of a DOM document, and thus acts on its containing document, GoQuery doesn't know which HTML document to act upon. So it needs to be told, and that's what the `Document` class is for. It holds the root document node as the initial Selection object to manipulate. @@ -77,6 +81,7 @@ Taken from example_test.go: ## TODOs + * Benchmarks so that future changes have a baseline to compare to. * Refactor Next...() and Prev...() to use the new NextSibling/PrevSibling fields.