Skip to content

Releases: scalameta/mdoc

mdoc v2.2.24

20 Oct 12:01
1f2187d
Compare
Choose a tag to compare

What’s Changed

mdoc v2.2.23

27 Aug 06:37
ad331b2
Compare
Choose a tag to compare

Crash blocks now support multiple statements

Previously, every statement within an mdoc:crash code fence would be wrapped in individual try/catch meaning that you couldn't reference variables between statements. For example, the code fence below would fail to compile because x from the statement 100 / x was undefined.

```scala mdoc:crash
val x = 0
100 /  x
```

Now, thanks to #551 by @keynmol the entire code fence gets wrapped in a single try/catch so that you reference variables between statements.

What’s Changed

mdoc v2.2.21

14 May 09:28
bf2b863
Compare
Choose a tag to compare

What’s Changed

mdoc v2.2.20

06 May 07:51
6e8673f
Compare
Choose a tag to compare

mdoc v2.2.19

29 Mar 18:54
b21694e
Compare
Choose a tag to compare

What’s Changed

mdoc v2.2.18

17 Feb 18:29
d58d4fe
Compare
Choose a tag to compare

What’s Changed

mdoc v2.2.17

07 Feb 08:05
977d6c8
Compare
Choose a tag to compare

What’s Changed

mdoc v2.2.16

19 Jan 15:12
a7e7952
Compare
Choose a tag to compare

What’s Changed

mdoc v2.2.14

17 Dec 16:40
c0e6315
Compare
Choose a tag to compare

What’s Changed

  • Add support for Scala 3.0.0-M3 (#432) @tgodzik
  • Bump to 2.13.4 and make sure CI is testing correct cross versions (#426) @ckipp01
  • Store compilers with dependencies and scalacOptions. (#425) @ckipp01

mdoc v2.2.13

25 Nov 16:03
ee3cdcc
Compare
Choose a tag to compare

What’s Changed