Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
anuragsoni committed Apr 14, 2020
1 parent 205f32b commit f58e4a6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 3 additions & 1 deletion src/routes.mli
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f58e4a6

Please sign in to comment.