From 2fa44943d11613a09f6f3bc92012a2b75df654d7 Mon Sep 17 00:00:00 2001 From: Thibaut Date: Thu, 14 Apr 2022 12:26:45 +0200 Subject: [PATCH] Prepare release 0.2 --- CHANGES.md | 21 +++++++++++++++++++++ README.md | 2 +- dune-project | 5 +++-- river.opam | 7 ++++--- 4 files changed, 29 insertions(+), 6 deletions(-) create mode 100644 CHANGES.md diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 0000000..d204cfe --- /dev/null +++ b/CHANGES.md @@ -0,0 +1,21 @@ +# 0.2 - 2022-04-14 + +- Build with dune. +- Make the types abstract and add accessor functions. +- Support fetching meta description and SEO image from the posts links. + +# 0.1.3 - 2015-07-28 + +- Make river compatible with the latest syndic API + +# 0.1.2 - 2015-03-24 + +- Refactoring modules. + +# 0.1.1 - 2015-03-19 + +- Upgrading version number. + +# 0.1 - 2015-03-15 + +- Initial release diff --git a/README.md b/README.md index 362c6bd..cbde8a8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # River -[![Actions Status](https://github.com/tmattio/river/workflows/CI/badge.svg)](https://github.com/tmattio/river/actions) +[![Actions Status](https://github.com/kayceesrk/river/workflows/CI/badge.svg)](https://github.com/kayceesrk/river/actions) RSS2 and Atom feed aggregator for OCaml diff --git a/dune-project b/dune-project index a423c15..bcfea7b 100644 --- a/dune-project +++ b/dune-project @@ -1,8 +1,8 @@ -(lang dune 2.0) +(lang dune 3.0) (name river) -(documentation "https://tmattio.github.io/river/") +(documentation "https://kayceesrk.github.io/river/") (source (github kayceesrk/river)) @@ -34,4 +34,5 @@ ptime lwt ocamlnet + lambdasoup (odoc :with-doc))) diff --git a/river.opam b/river.opam index e8d5319..c3c362f 100644 --- a/river.opam +++ b/river.opam @@ -6,11 +6,11 @@ maintainer: ["KC Sivaramakrishnan "] authors: ["KC Sivaramakrishnan "] license: "MIT" homepage: "https://github.com/kayceesrk/river" -doc: "https://tmattio.github.io/river/" +doc: "https://kayceesrk.github.io/river/" bug-reports: "https://github.com/kayceesrk/river/issues" depends: [ "ocaml" {>= "4.08.0"} - "dune" + "dune" {>= "3.0"} "syndic" {>= "1.5"} "cohttp" {>= "5.0.0"} "cohttp-lwt" {>= "5.0.0"} @@ -18,10 +18,11 @@ depends: [ "ptime" "lwt" "ocamlnet" + "lambdasoup" "odoc" {with-doc} ] build: [ - ["dune" "subst"] {pinned} + ["dune" "subst"] {dev} [ "dune" "build"