Skip to content

Commit ad7b537

Browse files
committed
Merge branch 'master' into jupyter
2 parents 4df7a1a + cb9c545 commit ad7b537

File tree

114 files changed

+1442
-1059
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+1442
-1059
lines changed

.github/workflows/changelog.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Changelog check
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
types: [ opened, synchronize, reopened, labeled, unlabeled ]
7+
8+
jobs:
9+
Changelog-Entry-Check:
10+
name: Check Changelog Action
11+
runs-on: ubuntu-20.04
12+
steps:
13+
- uses: tarides/changelog-check-action@v1

.github/workflows/main.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/pr-number.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: PR number update
2+
3+
on: [pull_request_target]
4+
5+
jobs:
6+
PR-Number-Update:
7+
name: Update PR number
8+
runs-on: ubuntu-20.04
9+
steps:
10+
- uses: tarides/[email protected]

.ocamlformat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=0.19.0
1+
version=0.20.1
22
profile=conventional

CHANGES.md

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,48 @@
33
#### Added
44

55
- Add Jupyter Notebook output (#124, @avsm, @CraigFe, @jonludlam)
6+
- Report all parsing errors in Markdown files (#389, @NathanReb)
67

78
#### Changed
89

10+
- Preserve indentation in multiline OCaml blocks in .mli files (#395, @panglesd)
11+
912
#### Deprecated
1013

1114
#### Fixed
1215

16+
- Fixed compatibility with Cmdliner 1.1.0 (#371, @Leonidas-from-XIV)
17+
- Report errors and exit codes of toplevel directives (#382, @talex5,
18+
@Leonidas-from-XIV)
19+
- Fix block locations in error reporting (#389, @NathanReb)
20+
- Include the content of the line that features the `part-end` MDX directive in
21+
the output, before that line would've been dropped (#374, #387,
22+
@Leonidas-from-XIV)
23+
24+
#### Removed
25+
26+
#### Security
27+
28+
### 2.1.0
29+
30+
#### Added
31+
32+
- Add support for adding language tags and metadata labels in `mli` files.
33+
(#339, #357, @julow, @Leonidas-from-XIV)
34+
- Add support for running non-deterministic tests in `dune` MDX 0.2 stanza by
35+
setting the `MDX_RUN_NON_DETERMINISTIC` environment variable. (#365,
36+
#366, @Leonidas-from-XIV)
37+
38+
### 2.0.0
39+
40+
#### Added
41+
42+
- Add trailing `;;` to the output of toplevel phrases that were missing it.
43+
(#346, @Leonidas-from-XIV)
44+
- Make MDX compatible with OCaml 4.14 (#356, @NathanReb)
45+
46+
#### Fixed
47+
1348
- Use the same output as the normal toplevel. Mdx used to carry an unsafe patch
1449
to work around a bug fixed in OCaml 4.06 and that patch would change the
1550
printed types in some corner cases. (#322, @emillon)
@@ -20,8 +55,9 @@
2055
is 4.08 to 4.13 now (#345, @Leonidas-from-XIV)
2156
- Do not install deprecated `mdx` binary anymore (#274, @gpetiot)
2257
- Remove deprecated `rule` command (#312, @gpetiot)
23-
24-
#### Security
58+
- Remove support for `require-package` label, use the `mdx` stanza in dune
59+
instead. This label was only used for the `rule` command and can now be
60+
safely removed. (#363, @Leonidas-from-XIV)
2561

2662
### 1.11.0
2763

0 commit comments

Comments
 (0)