Skip to content

Commit

Permalink
[new release] res (5.0.2)
Browse files Browse the repository at this point in the history
CHANGES:

- Switched to OPAM file generation via `dune-project`.

- Used packed float array implementation for resizable float arrays.

- Removed `bytes` dependency (thanks to Marek Kubica).

- Fixed closure allocation due to match on mutable (thanks to Luke Palmer).

- Used ocamlformat to format code, and fixed OCaml doc problems.

- Added GitHub workflow for CI.
  • Loading branch information
mmottl committed Oct 27, 2024
1 parent 19f88a0 commit e785577
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions packages/res/res.5.0.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
opam-version: "2.0"
synopsis: "RES - Library for resizable, contiguous datastructures"
description:
"RES is a library containing resizable arrays, strings, and bitvectors."
maintainer: ["Markus Mottl <markus.mottl@gmail.com>"]
authors: ["Markus Mottl <markus.mottl@gmail.com>"]
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
homepage: "https://mmottl.github.io/res"
doc: "https://mmottl.github.io/res/api"
bug-reports: "https://github.com/mmottl/res/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "4.08"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/mmottl/res.git"
url {
src: "https://github.com/mmottl/res/releases/download/5.0.2/res-5.0.2.tbz"
checksum: [
"sha256=850c51113098c72ed91da879720f971ed1f7c028ffa1fab5547c6c3c7bbdd455"
"sha512=20c32ca9782ca9f1a345ffdbd94286741da6fde711c11bc9678e23365a1654c20e85bd8929354f98c85857976784dedd7b08060a25e0f223176f3eee21dbf532"
]
}
x-commit-hash: "72b8cde143b3ab2d427c1b35340d181fd0daf34e"

0 comments on commit e785577

Please sign in to comment.