File: CHANGES.md

package info (click to toggle)
ppx-custom-printf 0.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144 kB
  • sloc: ml: 419; makefile: 14
file content (23 lines) | stat: -rw-r--r-- 575 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
## v0.11

Depend on ppxlib instead of (now deprecated) ppx\_core, ppx\_driver,
ppx\_metaquot, ppx\_traverse and ppx\_type\_conv.

## 113.43.00

- use the new context-free API

## 113.24.00

- OCaml makes no distinctions between "foo" and
  `{whatever|foo|whatever}`. The delimiter choice is simply left to the
  user.

  Do the same in our ppx rewriters: i.e. wherever we accept "foo", also
  accept `{whatever|foo|whatever}`.

- Fix missing location in errors for broken custom printf example like:

      printf !"%{sexp: int" 3;;

- Update to follow `Ppx_core` evolution.