Skip to content

Commit

Permalink
Bump version, update changelog, bump version to release 1.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
devn committed Jun 13, 2014
1 parent dc3b4fb commit 3b9251a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.org
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* <2014-06-13 Fri> -- Version 1.5.8
** Create page from a string with #'yokogiri.core/create-page
* <2013-12-25 Wed> -- Version 1.5.5
** Fixed a bug with make-client options not being set
** Added more usage to docstrings
Expand Down
6 changes: 5 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## getting started

In your `project.clj`: `[yokogiri "1.5.7"]`
In your `project.clj`: `[yokogiri "1.5.8"]`
```clojure
(ns myproject.core
(:require [yokogiri.core :as $]))
Expand Down Expand Up @@ -60,6 +60,10 @@ or

;; Treat a local HTML file as a page:
(xpath (as-page "docs/uberdoc.html") "//a")

;; Treat an HTML string as a page:
(let [html-string "<html><body><a href=\"/foo\">bar</a></body></html>"]
(xpath (create-page html-string) "//a"))
```

## documentation
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject yokogiri "1.5.7"
(defproject yokogiri "1.5.8"
:description "Barebones Nokogiri for Clojure"
:license {:name "Eclipse Public License - Version 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
Expand Down

0 comments on commit 3b9251a

Please sign in to comment.