Skip to content

Commit

Permalink
Fix drom_toml version and dep
Browse files Browse the repository at this point in the history
  • Loading branch information
lefessan committed Jan 2, 2023
1 parent b4edd50 commit fbfe710
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .drom
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version:0.8.0

# hash of toml configuration files
# used for generation of all files
de2e3a51460fffe341f3fdb5d2cd5007:.
184c7f1cb3b008555ed6a03b082ae98f:.
# end context for .

# begin context for .github/workflows/workflow.yml
Expand Down Expand Up @@ -100,7 +100,7 @@ b9f2c87e2fd71a152b79fac4a7ba7c8e:dune

# begin context for dune-project
# file dune-project
39930bb0e95534be1c07c43bf47887a9:dune-project
4b3d6ef1eb76e10c9551edd620f5e19e:dune-project
# end context for dune-project

# begin context for opam/drom.opam
Expand All @@ -110,12 +110,12 @@ b9f2c87e2fd71a152b79fac4a7ba7c8e:dune

# begin context for opam/drom_lib.opam
# file opam/drom_lib.opam
7e857bb00dd7378f322ce9899870aca2:opam/drom_lib.opam
19c19bb314845c46214ef15ecf119a0d:opam/drom_lib.opam
# end context for opam/drom_lib.opam

# begin context for opam/drom_toml.opam
# file opam/drom_toml.opam
b12e7255b3ab78fab76727cb757c7911:opam/drom_toml.opam
49100060da48de3163e62ee6806d3973:opam/drom_toml.opam
# end context for opam/drom_toml.opam

# begin context for scripts/after.sh
Expand Down Expand Up @@ -225,7 +225,7 @@ d1b05207fce876a1b44a8b268bcaf226:src/toml.7.1.0/index.mld

# begin context for src/toml.7.1.0/version.mlt
# file src/toml.7.1.0/version.mlt
d07fed9ff80a7378441fba007c70d3e9:src/toml.7.1.0/version.mlt
959d160d86aff863e3d46e620d4c23f0:src/toml.7.1.0/version.mlt
# end context for src/toml.7.1.0/version.mlt

# begin context for test/expect-tests/dune
Expand Down
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
(ez_file (and (>= 0.3.0) (< 1.0.0)))
(ez_config (and (>= 0.1.0) (< 1.0.0)))
(ez_cmdliner (and (>= 0.2.0) (< 1.0.0)))
(drom_toml (and (>= 7.0.0) (< 8.0.0)))
(drom_toml (= version))
(directories ( >= 0.2 ))
(crunch ( >= 3.2.0 ))
ppx_inline_test
Expand Down
2 changes: 1 addition & 1 deletion opam/drom_lib.opam
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ depends: [
"ez_file" {>= "0.3.0" & < "1.0.0"}
"ez_config" {>= "0.1.0" & < "1.0.0"}
"ez_cmdliner" {>= "0.2.0" & < "1.0.0"}
"drom_toml" {>= "7.0.0" & < "8.0.0"}
"drom_toml" {= version}
"directories" {>= "0.2"}
"crunch" {>= "3.2.0"}
"ppx_inline_test" {with-test}
Expand Down
2 changes: 1 addition & 1 deletion opam/drom_toml.opam
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Do not modify, or add to the `skip` field of `drom.toml`.
opam-version: "2.0"
name: "drom_toml"
version: "7.1.0"
version: "0.8.0"
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
synopsis:
"The drom tool is a wrapper over opam/dune in an attempt to provide a cargo-like user experience"
Expand Down
2 changes: 1 addition & 1 deletion src/drom_lib/package.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pack-modules = true
# base-unix = { libname = "unix", version = ">=base" }
[dependencies]
directories = ">=0.2"
drom_toml = "7.0.0"
drom_toml = "version"
ez_cmdliner = "0.2.0"
ez_config = "0.1.0"
ez_file = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion src/toml.7.1.0/package.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "drom_toml"
skeleton = "library"

# version if different from project version
version = "7.1.0"
# version = "7.1.0"

# synopsis if different from project synopsis
# synopsis = ...
Expand Down
2 changes: 1 addition & 1 deletion src/toml.7.1.0/version.mlt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let query cmd =

let commit_hash = query "git show -s --pretty=format:%H"
let commit_date = query "git show -s --pretty=format:%ci"
let version = "7.1.0"
let version = "0.8.0"

let string_option = function
| None -> "None"
Expand Down

0 comments on commit fbfe710

Please sign in to comment.