this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[new release] bam (3 packages) (0.3)

CHANGES:

- Fix a file descriptor leak (francoisthire/bam#8)

- More control over the computation of statistics (francoisthire/bam#8)

- Fix a typing regression with OCaml 5.2 (francoisthire/bam#8)

- Update the dependencies to be compatible with OCaml 5.2 (francoisthire/bam#11)
(Thanks @mathiasbourgoin, @matthiasdrp)

+134 -4
+42
packages/bam-ppx/bam-ppx.0.3/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "A PPX deriving generators for OCaml types" 3 + description: 4 + "Provides a way to automatically get generators for a given type" 5 + maintainer: ["François Thiré <bam@saroupille.com>"] 6 + authors: ["François Thiré <bam@saroupille.com>"] 7 + license: "MIT" 8 + tags: ["test" "pbt" "shrinking" "internal" "bam" "ppx"] 9 + homepage: "https://github.com/francoisthire/bam" 10 + doc: "https://francoisthire.github.io/bam/" 11 + bug-reports: "https://github.com/francoisthire/bam/issues" 12 + depends: [ 13 + "ocaml" {>= "4.14" & < "5.3"} 14 + "dune" {>= "3.7" & >= "3.7"} 15 + "ppxlib" {>= "0.32.0"} 16 + "dmap" {>= "0.5"} 17 + "odoc" {with-doc} 18 + ] 19 + build: [ 20 + ["dune" "subst"] {dev} 21 + [ 22 + "dune" 23 + "build" 24 + "-p" 25 + name 26 + "-j" 27 + jobs 28 + "@install" 29 + "@runtest" {with-test} 30 + "@doc" {with-doc} 31 + ] 32 + ] 33 + dev-repo: "git+https://github.com/francoisthire/bam.git" 34 + url { 35 + src: 36 + "https://github.com/francoisthire/bam/releases/download/v0.3/bam-0.3.tbz" 37 + checksum: [ 38 + "sha256=6fbb38cad09fb8062841cc67e8cdac279304b8cf1ed14746944cd45246d2a888" 39 + "sha512=ad2b880c50921d77e3f190d8e48066407fdf4b9bb168a0e1094cc8ffb234740b53d494089346797d6c7e5bae28f4eb5d95e22b31f9329e3c5817bc506cd652d4" 40 + ] 41 + } 42 + x-commit-hash: "c81e8e1805e1572495a5717380ce104a9bcaff62"
+43
packages/bam/bam.0.3/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "A property-based testing library with internal shrinking" 3 + description: 4 + "A property-based testing allowing to define generators with internal shrinking easily" 5 + maintainer: ["François Thiré <bam@saroupille.com>"] 6 + authors: ["François Thiré <bam@saroupille.com>"] 7 + license: "MIT" 8 + tags: ["test" "pbt" "shrinking" "internal"] 9 + homepage: "https://github.com/francoisthire/bam" 10 + doc: "https://francoisthire.github.io/bam/" 11 + bug-reports: "https://github.com/francoisthire/bam/issues" 12 + depends: [ 13 + "ocaml" {>= "4.14"} 14 + "dune" {>= "3.7" & >= "3.7"} 15 + "pringo" 16 + "zarith" {>= "1.13"} 17 + "odoc" {with-doc} 18 + "tezt" {>= "4.0" & with-test} 19 + ] 20 + build: [ 21 + ["dune" "subst"] {dev} 22 + [ 23 + "dune" 24 + "build" 25 + "-p" 26 + name 27 + "-j" 28 + jobs 29 + "@install" 30 + "@runtest" {with-test} 31 + "@doc" {with-doc} 32 + ] 33 + ] 34 + dev-repo: "git+https://github.com/francoisthire/bam.git" 35 + url { 36 + src: 37 + "https://github.com/francoisthire/bam/releases/download/v0.3/bam-0.3.tbz" 38 + checksum: [ 39 + "sha256=6fbb38cad09fb8062841cc67e8cdac279304b8cf1ed14746944cd45246d2a888" 40 + "sha512=ad2b880c50921d77e3f190d8e48066407fdf4b9bb168a0e1094cc8ffb234740b53d494089346797d6c7e5bae28f4eb5d95e22b31f9329e3c5817bc506cd652d4" 41 + ] 42 + } 43 + x-commit-hash: "c81e8e1805e1572495a5717380ce104a9bcaff62"
+4 -4
packages/tezt-bam/tezt-bam.0.2/opam
··· 1 1 opam-version: "2.0" 2 2 synopsis: "A plugin of [bam] for Tezt" 3 3 description: "Provides a way to register PBT tests with Tezt" 4 - maintainer: ["François Thiré"] 5 - authors: ["François Thiré"] 4 + maintainer: ["François Thiré <bam@saroupille.com>"] 5 + authors: ["François Thiré <bam@saroupille.com>"] 6 6 license: "MIT" 7 7 tags: ["test" "tezt" "pbt" "shrinking" "internal" "bam"] 8 8 homepage: "https://github.com/francoisthire/bam" ··· 12 12 "ocaml" 13 13 "dune" {>= "3.7"} 14 14 "tezt" {>= "4.0"} 15 - "bam" 16 - "bam-ppx" 15 + "bam" {< "0.3"} 16 + "bam-ppx" {< "0.3"} 17 17 "mtime" {>= "2.0"} 18 18 "odoc" {with-doc} 19 19 ]
+45
packages/tezt-bam/tezt-bam.0.3/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "A plugin of [bam] for Tezt" 3 + description: "Provides a way to register PBT tests with Tezt" 4 + maintainer: ["François Thiré <bam@saroupille.com>"] 5 + authors: ["François Thiré <bam@saroupille.com>"] 6 + license: "MIT" 7 + tags: ["test" "tezt" "pbt" "shrinking" "internal" "bam"] 8 + homepage: "https://github.com/francoisthire/bam" 9 + doc: "https://francoisthire.github.io/bam/" 10 + bug-reports: "https://github.com/francoisthire/bam/issues" 11 + depends: [ 12 + "ocaml" 13 + "dune" {>= "3.7" & >= "3.7"} 14 + "tezt" {>= "4.0"} 15 + "bam" {>= "0.3"} 16 + "bam-ppx" {>= "0.3"} 17 + "mtime" {>= "2.0"} 18 + "odoc" {with-doc} 19 + ] 20 + build: [ 21 + ["dune" "subst"] {dev} 22 + [ 23 + "dune" 24 + "build" 25 + "-p" 26 + name 27 + "-j" 28 + jobs 29 + "@install" 30 + "@runtest" {with-test} 31 + "@doc" {with-doc} 32 + ] 33 + ] 34 + dev-repo: "git+https://github.com/francoisthire/bam.git" 35 + available: arch != "arm32" & arch != "x86_32" 36 + url { 37 + src: 38 + "https://github.com/francoisthire/bam/releases/download/v0.3/bam-0.3.tbz" 39 + checksum: [ 40 + "sha256=6fbb38cad09fb8062841cc67e8cdac279304b8cf1ed14746944cd45246d2a888" 41 + "sha512=ad2b880c50921d77e3f190d8e48066407fdf4b9bb168a0e1094cc8ffb234740b53d494089346797d6c7e5bae28f4eb5d95e22b31f9329e3c5817bc506cd652d4" 42 + ] 43 + } 44 + x-commit-hash: "c81e8e1805e1572495a5717380ce104a9bcaff62" 45 +