Prepare release v0.2.0

This commit is contained in:
Reynir Björnsson 2021-12-16 16:17:19 +01:00
parent d3c7b0cd00
commit 0a82ca4734
4 changed files with 11 additions and 5 deletions

View file

@ -1,3 +1,12 @@
## v0.2.0 (2021-12-16)
* Rename binary from solo5-elftool to osolo5-elftool so it can co-exist with
the C binary
* Implement `query_abi` and `osolo5-elftool query-abi`
* Return a result error instead of an assertion exception on unknown manifest
entry types
* Remove noop tests
## v0.1.0 (2021-12-15)
* Initial public release

View file

@ -1,6 +1,6 @@
opam-version: "2.0"
homepage: "https://github.com/roburio/ocaml-solo5-elftool"
dev-repo: "git+https://github.com/roburio/ocaml-solo5-elftool.git"
homepage: "https://git.robur.io/robur/ocaml-solo5-elftool"
dev-repo: "git+https://git.robur.io/robur/ocaml-solo5-elftool.git"
bug-reports: "https://github.com/roburio/ocaml-solo5-elftool/issues"
doc: "https://roburio.github.io/ocaml-solo5-elftool/doc"
maintainer: [ "team@robur.coop" ]
@ -10,7 +10,6 @@ license: "BSD-2-Clause"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [

View file

@ -1,2 +0,0 @@
(test
(name solo5_elftool))

View file