diff --git a/CHANGES.md b/CHANGES.md index 2e8398d..4c6ac19 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +# 0.7.3 + +* Allow adding new routes to existing router. (#108, @tatchi) +* Fix library name in bsconfig.json. (#109, @tsnobip) +* Specify -O3 flag for ocamlopt when using dune's release profile. (#110) + # 0.7.2 * Use bisect_ppx to generate coverage reports (#95) diff --git a/package.json b/package.json index 51b9bcd..a73983c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@anuragsoni/routes", - "version": "0.7.2-bucklescript", + "version": "0.7.3", "description": "Typed bidirectional routing for OCaml/ReasonML web applications", "repository": { "type": "git", diff --git a/src/routes.mli b/src/routes.mli index 806b27b..4f26bdf 100644 --- a/src/routes.mli +++ b/src/routes.mli @@ -149,5 +149,7 @@ val pp_path : Format.formatter -> ('a, 'b) path -> unit val pp_route : Format.formatter -> 'a route -> unit (** [add_route] takes a route and a router as input, and returns a new router - which contains the route provided as input *) + which contains the route provided as input. + + @since 0.7.3 *) val add_route : 'b route -> 'b router -> 'b router