v2.1.0
CHANGES:
This release has backwards incompatible changes.
- Infix functions are now available in
Parser
module itself. - Add support for let operators -
let+
,let*
,and+
andand*
. bind
andmap
function are now labelled followingbase
library
dependency convention.- Items in
all_unit
are nowunit t
rather than_ t
following monad
combinator convention inbase
library dependency. pure
is now deprecated. Usereturn
instead. This is to stay consistent
with monad conventions inbase
library dependency.>|=
is deprecated. Use>>|
instead. This is to stay consistent with monad
conventions inbase
library dependency.- Removed
map4
function. - Add support for
ppx_let
. - Deprecate
Parser
module. UseReparse
instead.