Skip to content

Releases: kit-ty-kate/opam-build

0.2.4

02 Mar 17:00
Compare
Choose a tag to compare

CHANGES:

  • Show the output of each commands called live
  • Quote the commands printed properly as required
  • Improve the UI

0.2.3

29 Feb 12:48
Compare
Choose a tag to compare

CHANGES:

  • Restore compatiblity with OCaml >= 4.08

0.2.2

29 Feb 10:56
Compare
Choose a tag to compare

CHANGES:

  • Fix flipped behaviour (pins should be done on local switches not global ones)

0.2.1

26 Feb 12:21
Compare
Choose a tag to compare

CHANGES:

  • Restore compatiblity with OCaml >= 4.08

0.2.0

25 Feb 13:47
Compare
Choose a tag to compare

CHANGES:

  • Upgrade to opam 2.2
  • Upgrade to cmdliner 1.1
  • Now requires the xdg library
  • Now requires OCaml >= 5.1
  • Improve performance
  • Add a new --global and --local command line argument to signify whether to use a local switch or a global switch
  • Add a new config file storing the user preference and which kind of switch to use by default
  • Remove the command line directory argument
  • Fix building unreleased packages in local mode
  • Do not show the "No invariant was set..." warning when creating a local switch
  • Document the tools and command line arguments in --help

0.1.0

23 Nov 02:32
Compare
Choose a tag to compare
  • A simple project with two plugins:
    • opam-build: which builds any project easily with just one command: opam build. The command will setup a local switch and install all the required dependencies.
    • opam-test: which does the same thing as opam-build but runs the tests on top of it. It also circumvents issues with cyclic test dependencies in opam (where the tests require a package that needs the library it is trying to test). Such cyclic dependency is present in packages such as odoc or base. See ocaml/opam#4594