I’m migrating a package from a Make-based build to a dune-based build and made a bad release in the process. I missed a test dependency. I’m trying to remedy this situation, but I’m too much of a novice in the opam world.
The repo in question is mlbdd: https://github.com/arlencox/mlbdd
The mistake was a simple one. I forgot to add (depends (ounit2 :with-test))
to the package in my dune-project
file. I’ve fixed this and pushed the change to master in my repository.
Now I want to fix the release. I used dune-release
to make the release. It created tags, made a tgz release on GitHub, and opened a pull request. All of these need to be fixed. Is there a way to make dune-release fix this?