Skip to content

Commit

Permalink
Bump to 0.7.1
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
aantron committed Apr 22, 2020
1 parent 2758b31 commit 31ba648
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Lambda Soup   [![version 0.7.0][version]][releases] [![Travis status][travis-img]][travis] [![Coverage][coveralls-img]][coveralls]
# Lambda Soup   [![version][version]][releases] [![Travis status][travis-img]][travis] [![Coverage][coveralls-img]][coveralls]

[version]: https://img.shields.io/badge/version-0.7.0-blue.svg
[version]: https://img.shields.io/badge/version-0.7.1-blue.svg
[travis]: https://travis-ci.org/aantron/lambdasoup/branches
[travis-img]: https://img.shields.io/travis/aantron/lambdasoup/master.svg
[coveralls]: https://coveralls.io/github/aantron/lambdasoup?branch=master
Expand Down
2 changes: 1 addition & 1 deletion lambdasoup.opam
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ opam-version: "2.0"

synopsis: "Easy functional HTML scraping and manipulation with CSS selectors"

version: "dev"
version: "0.7.1"
license: "MIT"
homepage: "https://github.com/aantron/lambdasoup"
doc: "https://aantron.github.io/lambdasoup"
Expand Down
14 changes: 13 additions & 1 deletion src/dune
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
(* -*- tuareg -*- *)

let preprocess =
match Sys.getenv "BISECT_ENABLE" with
| "yes" -> "(preprocess (pps bisect_ppx))"
| _ -> ""
| exception Not_found -> ""

let () = Jbuild_plugin.V1.send @@ {|

(library
(name soup)
(public_name lambdasoup)
(synopsis "Easy functional HTML scraping and manipulation")
(wrapped false)
(flags (:standard -w +A -warn-error -3))
(preprocess (pps bisect_ppx --conditional))
|} ^ preprocess ^ {|
(libraries markup))

|}
2 changes: 1 addition & 1 deletion src/soup.mli
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ let _ = ul |> previous_siblings |> elements in
{{:https://github.com/aantron/lambdasoup/blob/master/LICENSE.md} BSD
license}.
This documentation page is for version 0.7.0 of the library. Documentation
This documentation page is for version 0.7.1 of the library. Documentation
for other versions can be downloaded from the
{{:https://github.com/aantron/lambdasoup/releases} releases page}. *)

Expand Down

0 comments on commit 31ba648

Please sign in to comment.