Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to cmdlang.0.0.5 #19

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Changed

- Upgrade to `cmdlang.0.0.5`.

### Deprecated

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion bin/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
(public_name ocaml-vcs)
(package vcs-command)
(flags :standard -w +a-4-40-41-42-44-45-48-66 -warn-error +a)
(libraries cmdlang-to-cmdliner err vcs-command)
(libraries cmdlang-cmdliner-runner err vcs-command)
(instrumentation
(backend bisect_ppx)))
2 changes: 1 addition & 1 deletion bin/main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
(*******************************************************************************)

let () =
Cmdlang_to_cmdliner.run
Cmdlang_cmdliner_runner.run
Vcs_command.main
~name:"ocaml-vcs"
~version:"%%VERSION%%"
Expand Down
18 changes: 11 additions & 7 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
(>= v0.17)
(< v0.18)))
(cmdlang
(>= 0.0.4))
(>= 0.0.5))
(eio
(>= 1.0))
(fpath
Expand Down Expand Up @@ -130,17 +130,19 @@
(>= v0.17)
(< v0.18)))
(cmdlang
(>= 0.0.4))
(>= 0.0.5))
(cmdlang-cmdliner-runner
(>= 0.0.5))
(cmdlang-to-cmdliner
(>= 0.0.4))
(>= 0.0.5))
(cmdliner
(= 1.3.0))
(eio
(>= 1.0))
(eio_main
(>= 1.0))
(err
(>= 0.0.4))
(>= 0.0.5))
(fpath
(>= 0.7.3))
(fpath-base
Expand Down Expand Up @@ -361,9 +363,11 @@
:with-dev-setup
(>= 2.8.3)))
(cmdlang
(>= 0.0.4))
(>= 0.0.5))
(cmdlang-cmdliner-runner
(>= 0.0.5))
(cmdlang-to-cmdliner
(>= 0.0.4))
(>= 0.0.5))
(cmdliner
(= 1.3.0))
(core
Expand All @@ -375,7 +379,7 @@
(eio_main
(>= 1.0))
(err
(>= 0.0.4))
(>= 0.0.5))
(expect_test_helpers_core
(and
(>= v0.17)
Expand Down
2 changes: 1 addition & 1 deletion vcs-arg.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ depends: [
"dune" {>= "3.16"}
"ocaml" {>= "5.2"}
"base" {>= "v0.17" & < "v0.18"}
"cmdlang" {>= "0.0.4"}
"cmdlang" {>= "0.0.5"}
"eio" {>= "1.0"}
"fpath" {>= "0.7.3"}
"fpath-base" {>= "0.2.0"}
Expand Down
7 changes: 4 additions & 3 deletions vcs-command.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ depends: [
"dune" {>= "3.16"}
"ocaml" {>= "5.2"}
"base" {>= "v0.17" & < "v0.18"}
"cmdlang" {>= "0.0.4"}
"cmdlang-to-cmdliner" {>= "0.0.4"}
"cmdlang" {>= "0.0.5"}
"cmdlang-cmdliner-runner" {>= "0.0.5"}
"cmdlang-to-cmdliner" {>= "0.0.5"}
"cmdliner" {= "1.3.0"}
"eio" {>= "1.0"}
"eio_main" {>= "1.0"}
"err" {>= "0.0.4"}
"err" {>= "0.0.5"}
"fpath" {>= "0.7.3"}
"fpath-base" {>= "0.2.0"}
"ppx_compare" {>= "v0.17" & < "v0.18"}
Expand Down
7 changes: 4 additions & 3 deletions vcs-tests.opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ depends: [
"base" {>= "v0.17" & < "v0.18"}
"base_quickcheck" {>= "v0.17" & < "v0.18"}
"bisect_ppx" {with-dev-setup & >= "2.8.3"}
"cmdlang" {>= "0.0.4"}
"cmdlang-to-cmdliner" {>= "0.0.4"}
"cmdlang" {>= "0.0.5"}
"cmdlang-cmdliner-runner" {>= "0.0.5"}
"cmdlang-to-cmdliner" {>= "0.0.5"}
"cmdliner" {= "1.3.0"}
"core" {>= "v0.17" & < "v0.18"}
"eio" {>= "1.0"}
"eio_main" {>= "1.0"}
"err" {>= "0.0.4"}
"err" {>= "0.0.5"}
"expect_test_helpers_core" {>= "v0.17" & < "v0.18"}
"fpath" {>= "0.7.3"}
"fpath-base" {>= "0.2.0"}
Expand Down