Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
unreleased
----------

- Add Alpine 3.17 (3.16 is now tier 2 and 3.15 is deprecated). (@MisterDA #129)
- Add Alpine 3.17 (3.16 is now tier 2 and 3.15 is deprecated). Remove
libexecinfo-dev from the list of apk packages as it is no longer
available. Its symbols are only used in OCaml's self tests.
(@MisterDA #129, #130)

v8.1.0 2022-11-17 Sydney
----------
Expand Down
2 changes: 1 addition & 1 deletion src-opam/linux.ml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ module Apk = struct
let dev_packages ?extra () =
install
"build-base patch tar ca-certificates git rsync curl sudo bash \
libx11-dev nano coreutils xz libexecinfo-dev ncurses-dev%s"
libx11-dev nano coreutils xz ncurses-dev%s"
(match extra with None -> "" | Some x -> " " ^ x)

let add_user ?uid ?gid ?(sudo = false) username =
Expand Down