Skip to content

Releases: scalameta/mdoc

v2.3.2

27 Mar 19:07
e3750d2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.3.1...v2.3.2

v2.3.1

24 Feb 12:51
9014e2d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.3.0...v2.3.1

mdoc v2.3.0

28 Jan 16:47
3078e6f
Compare
Choose a tag to compare

What’s Changed

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