Skip to content

Commit

Permalink
prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeser committed Apr 5, 2022
1 parent 4d52649 commit 8d57aea
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 17 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.0 (2022-04-04)

- Complete API redesign.
- Removed dependency on Base stdlib.
- Added iterators for sequences.

## 2.0 (2020-01-22)

- Breaking change: made some types abstract.
Expand Down
2 changes: 1 addition & 1 deletion bin/dune
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
(name bench)
(libraries core_bench core_unix.command_unix combinat)
(preprocess
(pps ppx_let))
(pps ppx_jane))
(modules bench))
14 changes: 7 additions & 7 deletions combinat.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ homepage: "https://github.com/jfeser/combinat"
doc: "https://jfeser.github.io/combinat/combinat/index.html"
bug-reports: "https://github.com/jfeser/combinat/issues"
depends: [
"ocaml" {>= "4.07"}
"dune" {build & >= "2"}
"base" {>= "v0.12"}
"ppx_expect" {with-test & >= "v0.12"}
"ppx_sexp_conv" {with-test & >= "v0.12"}
"stdio" {with-test & >= "v0.12"}
"core_bench" {with-test & >= "v0.12"}
"ocaml" {>= "4.08"}
"dune" {>= "2"}
"core" {with-test & >= "v0.15"}
"expect_test_helpers_core" {with-test & >= "v0.15"}
"ppx_jane" {with-test & >= "v0.15"}
"core_bench" {with-test & >= "v0.15"}
"core_unix" {with-test & >= "v0.15"}
]
build: [
["dune" "subst"] {pinned}
Expand Down
14 changes: 7 additions & 7 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
(description "combinat provides fast iterators over combinatorial objects such as
permutations, combinations, and integer partitions.")
(depends
(ocaml (>= 4.07))
(dune (and :build (>= 2)))
(base (>= v0.12))
(ppx_expect (and :with-test (>= v0.12)))
(ppx_sexp_conv (and :with-test (>= v0.12)))
(stdio (and :with-test (>= v0.12)))
(core_bench (and :with-test (>= v0.12)))))
(ocaml (>= 4.08))
(dune (>= 2))
(core (and :with-test (>= v0.15)))
(expect_test_helpers_core (and :with-test (>= v0.15)))
(ppx_jane (and :with-test (>= v0.15)))
(core_bench (and :with-test (>= v0.15)))
(core_unix (and :with-test (>= v0.15)))))

(generate_opam_files true)
4 changes: 2 additions & 2 deletions test/dune
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(library
(name combinat_test)
(libraries combinat base stdio expect_test_helpers_core)
(libraries combinat core expect_test_helpers_core)
(inline_tests)
(preprocess
(pps ppx_jane))
(flags :standard -open Base -open Stdio -open Expect_test_helpers_core))
(flags :standard -open Core -open Expect_test_helpers_core))

0 comments on commit 8d57aea

Please sign in to comment.