Skip to content

Commit

Permalink
Merge pull request #263 from n-osborne/prepare-0.4.0-release
Browse files Browse the repository at this point in the history
Prepare release of version 0.4.0
  • Loading branch information
n-osborne authored Oct 8, 2024
2 parents b407ccf + 9893741 commit 23373dc
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 19 deletions.
14 changes: 7 additions & 7 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Unreleased
# 0.4.0

- Add support for running tests in separate processes with a timeout
[\#259](https://github.com/ocaml-gospel/ortac/pull/259)
- Add `Reserr.{traverse,traverse_,promote_mapi}`, rename `Reserr.map` to
`Reserr.promote_map` and remove `Reserr.concat_map`
[\#250](https://github.com/ocaml-gospel/ortac/pull/250)
- Fix display of the runnable scenario for protected values
[\#251](https://github.com/ocaml-gospel/ortac/pull/251)
- Fix sut as type argument or inside tuple bug
[\#245](https://github.com/ocaml-gospel/ortac/pull/245)
- Add support for multiple sut arguments
[\#247](https://github.com/ocaml-gospel/ortac/pull/247)
- Add support for returning sut values
[\#253](https://github.com/ocaml-gospel/ortac/pull/253)
- Add support for running tests in separate processes with a timeout
[\#259](https://github.com/ocaml-gospel/ortac/pull/259)
- Add support for multiple sut arguments
[\#247](https://github.com/ocaml-gospel/ortac/pull/247)
- Fix sut as type argument or inside tuple bug
[\#245](https://github.com/ocaml-gospel/ortac/pull/245)

# 0.3.0

Expand Down
6 changes: 4 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(using dune_site 0.1)
(using mdx 0.4)

(version 0.3.0)
(version 0.4.0)

(name ortac)
(license MIT)
Expand Down Expand Up @@ -188,7 +188,9 @@
"\> Ortac (OCaml Runtime Assertion Checking) is a tool to turn
"\> executable Gospel specifications into code to test they hold.
)
(authors "Nicolas Osborne <nicolas.osborne@tarides.com>")
(authors
"Nicolas Osborne <nicolas.osborne@tarides.com>"
"Nikolaus Huber <mail@n-huber.eu>")
(depends
(ocaml (>= 4.12.0))
(qcheck-stm (>= 0.4))
Expand Down
2 changes: 1 addition & 1 deletion ortac-core.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3.0"
version: "0.4.0"
synopsis:
"Ortac (OCaml Runtime Assertion Checking) core tool and library based on Gospel"
description: """
Expand Down
2 changes: 1 addition & 1 deletion ortac-dune.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3.0"
version: "0.4.0"
synopsis: "Generate dune rules for other ortac plugins"
description: "Generate dune rules for other ortac plugins"
maintainer: ["Nicolas Osborne <nicolas.osborne@tarides.com>"]
Expand Down
2 changes: 1 addition & 1 deletion ortac-examples.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3.0"
version: "0.4.0"
synopsis: "Ortac examples on different libraries"
maintainer: ["Nicolas Osborne <nicolas.osborne@tarides.com>"]
authors: [
Expand Down
2 changes: 1 addition & 1 deletion ortac-monolith.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3.0"
version: "0.4.0"
synopsis: "Monolith plugin for Ortac"
description: """
The Monolith plugin for the Ortac command-line tool (provided by
Expand Down
2 changes: 1 addition & 1 deletion ortac-qcheck-stm.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3.0"
version: "0.4.0"
synopsis: "QCheck-STM plugin for Ortac"
description: """
The QCheck-STM plugin for the Ortac command-line tool (provided by
Expand Down
2 changes: 1 addition & 1 deletion ortac-runtime-monolith.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3.0"
version: "0.4.0"
synopsis: "Runtime support library for Ortac/Monolith-generated code"
description: """
The ortac-runtime-monolith library provides support for the code
Expand Down
7 changes: 5 additions & 2 deletions ortac-runtime-qcheck-stm.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3.0"
version: "0.4.0"
synopsis: "Runtime support library for Ortac/QCheck-STM-generated code"
description: """
The ortac-runtime-qcheck-stm library provides support for the code
Expand All @@ -11,7 +11,10 @@ Ortac (OCaml Runtime Assertion Checking) is a tool to turn
executable Gospel specifications into code to test they hold.
"""
maintainer: ["Nicolas Osborne <nicolas.osborne@tarides.com>"]
authors: ["Nicolas Osborne <nicolas.osborne@tarides.com>"]
authors: [
"Nicolas Osborne <nicolas.osborne@tarides.com>"
"Nikolaus Huber <mail@n-huber.eu>"
]
license: "MIT"
homepage: "https://github.com/ocaml-gospel/ortac"
bug-reports: "https://github.com/ocaml-gospel/ortac/issues"
Expand Down
2 changes: 1 addition & 1 deletion ortac-runtime.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3.0"
version: "0.4.0"
synopsis: "Runtime support library for Ortac-generated code"
description: """
The ortac-runtime library provides support for the code generated
Expand Down
2 changes: 1 addition & 1 deletion ortac-wrapper.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3.0"
version: "0.4.0"
synopsis: "Wrapper plugin for Ortac"
description: """
The Wrapper plugin for the Ortac command-line tool (provided by the
Expand Down

0 comments on commit 23373dc

Please sign in to comment.