Skip to content

Commit 809492a

Browse files
committed
Prepare release 0.28.1
1 parent 5e74455 commit 809492a

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

CHANGES.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,12 @@ Items marked with an asterisk (\*) are changes that are likely to format
44
existing code differently from the previous release when using the default
55
profile. This started with version 0.26.0.
66

7-
## unreleased
8-
9-
### Fixed
10-
11-
- Fix crash with tuples of the form `~lbl:(1 + 2)` (#2732, #2733, @cod1r, @Julow)
12-
13-
- Fix dropped comment in `if then (* comment *) begin .. end` (#2734, @Julow)
14-
15-
## 0.28.0
7+
## 0.28.1
168

179
### Highlight
1810

19-
- \* Support for OCaml 5.4 (#2717, #2720, @Julow, @Octachron)
11+
- \* Support for OCaml 5.4
12+
(#2717, #2720, #2732, #2733, #2735, @Julow, @Octachron, @cod1r, @EmileTrotignon)
2013
OCamlformat now supports OCaml 5.4 syntax.
2114
Module packing of the form `((module M) : (module S))` are no longer
2215
rewritten to `(module M : S)` because these are now two different syntaxes.
@@ -162,6 +155,8 @@ profile. This started with version 0.26.0.
162155
let a = 3
163156
```
164157

158+
- Fix dropped comment in `if then (* comment *) begin .. end` (#2734, @Julow)
159+
165160
## 0.27.0
166161

167162
### Highlight

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ To configure ocamlformat to your liking, create an `.ocamlformat` configuration
4747

4848
```
4949
profile = default
50-
version = 0.27.0
50+
version = 0.28.1
5151
```
5252

5353
Refer to our [documentation](https://ocaml.org/p/ocamlformat/latest/doc/index.html) or use `ocamlformat --help` for a full list of configuration options.

doc/faq.mld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The recommended way is to use a versioned default profile, such as:
2121

2222
{[
2323
profile = default
24-
version = 0.28.0
24+
version = 0.28.1
2525
]}
2626

2727
(or replace with the output of [ocamlformat --version])

doc/getting_started.mld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dune build @install
2121
First of all, make sure you have an [.ocamlformat] file at the root of your project. Setting up your project to use the default profile and the OCamlFormat version you installed (hopefully the last one) in this [.ocamlformat] file is considered good practice:
2222
{[
2323
profile = default
24-
version = 0.28.0
24+
version = 0.28.1
2525
]}
2626

2727
To manually invoke OCamlformat the general command is:

0 commit comments

Comments
 (0)