package ppx_type_conv
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=0cc90c197202b5dcbd07cd56a134dc2b4d9ef6be84b9227bd22cc51cd8ec2dc2
md5=34a6339cf7259e114b2946c615fed9b8
CHANGES.md.html
v0.11
Depend on ppxlib instead of (now deprecated) ppx_core, ppx_driver and ppx_metaquot.
v0.10
Made
ppx_type_conv
accept theppx_deriving
syntax for derivers arguments, which makes it easier for for people to switch fromppx_deriving
toppx_type_conv
.
v0.9
113.43.00
Use the new context-free API
Change a behavior in ppx_type_conv: attributes inside the type definition such as
@default
are not removed. This is not really a big deal as we still check that they are used. We could restore this bevavior with a full pass at the end to remove used attributes.
113.33.01
Make the ppx_deriving glue more resilient to small changes in ppx_deriving. Related to whitequark/ppx_deriving#94
113.24.00
Kill the nonrec rewrite done by typerep. It is no longer needed since 4.02.2, we kept it only for compatibility with the camlp4 code.
Cleanup in type_conv: remove
Type_conv.Generator_result.make_at_the_end
, which was a hack to remove warnings. We can do it better now, and because this is only for signatures, the code generation issue what we had in simplify-type-conv-ignore-unused-warning doesn't apply.Update to follow
Ppx_core
evolution.