Skip to content

Commit 0b741e5

Browse files
committed
chore: bump version
Signed-off-by: Ali Caglayan <alizter@gmail.com>
1 parent ac6d3b9 commit 0b741e5

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

doc/coq.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ Let us start with a simple project. First, make sure we have a
417417

418418
.. code:: dune
419419
420-
(lang dune 3.10)
420+
(lang dune 3.11)
421421
(using coq 0.8)
422422
423423
Next we need a :ref:`dune<dune-files>` file with a :ref:`coq-theory` stanza:
@@ -647,7 +647,7 @@ otherwise Coq will not be able to find it.
647647

648648
.. code:: dune
649649
650-
(lang dune 3.10)
650+
(lang dune 3.11)
651651
(using coq 0.8)
652652
653653
(package

doc/dune-files.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ contents of all configuration files read by Dune and looks like:
1414

1515
.. code:: dune
1616
17-
(lang dune 3.10)
17+
(lang dune 3.11)
1818
1919
Additionally, they can contains the following stanzas.
2020

@@ -769,7 +769,7 @@ The ``dune-workspace`` file uses the S-expression syntax. This is what a typical
769769

770770
.. code:: dune
771771
772-
(lang dune 3.10)
772+
(lang dune 3.11)
773773
(context (opam (switch 4.07.1)))
774774
(context (opam (switch 4.08.1)))
775775
(context (opam (switch 4.11.1)))

doc/foreign-code.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ file:
9292

9393
.. code:: dune
9494
95-
(lang dune 3.10)
95+
(lang dune 3.11)
9696
(using ctypes 0.3)
9797
9898

doc/hacking.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ Such languages must be enabled in the ``dune`` project file separately:
266266
267267
.. code:: dune
268268
269-
(lang dune 3.10)
269+
(lang dune 3.11)
270270
(using coq 0.8)
271271
272272
If such extensions are experimental, it's recommended that they pass

doc/instrumentation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@ To enable an instrumentation backend globally, type the following in your
8888

8989
.. code:: dune
9090
91-
(lang dune 3.10)
91+
(lang dune 3.11)
9292
(instrument_with bisect_ppx)
9393
9494
or for each context individually:
9595

9696
.. code:: dune
9797
98-
(lang dune 3.10)
98+
(lang dune 3.11)
9999
(context default)
100100
(context (default (name coverage) (instrument_with bisect_ppx)))
101101
(context (default (name profiling) (instrument_with landmarks)))

doc/melange.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ version 3.8 of the dune language and the Melange extension is enabled:
4141

4242
.. code:: dune
4343
44-
(lang dune 3.10)
44+
(lang dune 3.11)
4545
(using melange 0.1)
4646
4747
Next, write a :ref:`dune<dune-files>` file with a :ref:`melange-emit` stanza:

doc/sites.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ consists of a name and a :ref:`section<install>` (e.g ``lib``, ``share``,
2626

2727
.. code:: dune
2828
29-
(lang dune 3.10)
29+
(lang dune 3.11)
3030
(using dune_site 0.1)
3131
(name mygui)
3232
@@ -225,7 +225,7 @@ Main Executable (C)
225225

226226
.. code:: dune
227227
228-
(lang dune 3.10)
228+
(lang dune 3.11)
229229
(using dune_site 0.1)
230230
(name app)
231231
@@ -285,7 +285,7 @@ The Plugin "plugin1"
285285

286286
.. code:: dune
287287
288-
(lang dune 3.10)
288+
(lang dune 3.11)
289289
(using dune_site 0.1)
290290
291291
(generate_opam_files true)

otherlibs/dune-rpc/private/types.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ end
3535
module Version = struct
3636
type t = int * int
3737

38-
let latest = (3, 10)
38+
let latest = (3, 11)
3939

4040
let sexp : t Conv.value =
4141
let open Conv in

test/blackbox-tests/test-cases/directory-targets/installed-dependency.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Allow directories to be installable
2323
Leaving directory 'a'
2424

2525
$ cat a/_build/install/default/lib/foo/dune-package
26-
(lang dune 3.10)
26+
(lang dune 3.11)
2727
(name foo)
2828
(sections (lib .) (share ../../share/foo))
2929
(files (lib (META dune-package)) (share (bar)))

test/blackbox-tests/test-cases/dune-init.t/run.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ And the opam file will be generated as expected
369369
bug-reports: "https://github.com/username/reponame/issues"
370370
depends: [
371371
"ocaml"
372-
$dune {>= "3.10"}
372+
$dune {>= "3.11"}
373373
"odoc" {with-doc}
374374
]
375375
build: [
@@ -479,7 +479,7 @@ And the opam file will be generated as expected
479479
bug-reports: "https://github.com/username/reponame/issues"
480480
depends: [
481481
"ocaml"
482-
"dune" {>= "3.10"}
482+
"dune" {>= "3.11"}
483483
"odoc" {with-doc}
484484
]
485485
build: [

test/blackbox-tests/test-cases/install/install-stublibs.t/run.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Begin by installing a library with C stubs.
3232
Installing install/lib/libA/libA.cmxs
3333
Installing install/lib/stublibs/dlllibA_stubs.so
3434
$ cat ./install/lib/libA/dune-package
35-
(lang dune 3.10)
35+
(lang dune 3.11)
3636
(name libA)
3737
(sections
3838
(lib

test/blackbox-tests/test-cases/melange/basic-install.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Test that we can install melange mode libraries
2727
]
2828

2929
$ cat ./_build/install/default/lib/foo/dune-package
30-
(lang dune 3.10)
30+
(lang dune 3.11)
3131
(name foo)
3232
(sections (lib .))
3333
(files

0 commit comments

Comments
 (0)