Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / fieldslib
Commits:
-
fca089a7
by Stephane Glondu at 2024-08-28T12:30:27+02:00
-
b785d609
by Stephane Glondu at 2024-08-28T12:30:27+02:00
-
1adc3db1
by Stephane Glondu at 2024-08-28T12:30:42+02:00
-
9f9e9b71
by Stephane Glondu at 2024-08-28T12:31:31+02:00
-
f2ddd475
by Stephane Glondu at 2024-08-28T12:34:58+02:00
7 changed files:
Changes:
1 | +profile=""> |
1 | 1 | The MIT License
|
2 | 2 | |
3 | -Copyright (c) 2009--2023 Jane Street Group, LLC <opensource-contacts@janestreet.com>
|
|
3 | +Copyright (c) 2009--2024 Jane Street Group, LLC <opensource-contacts@janestreet.com>
|
|
4 | 4 | |
5 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy
|
6 | 6 | of this software and associated documentation files (the "Software"), to deal
|
1 | +fieldslib (1:0.17.0-1) unstable; urgency=medium
|
|
2 | + |
|
3 | + * New upstream release
|
|
4 | + * Bump Standards-Version to 4.7.0
|
|
5 | + |
|
6 | + -- Stéphane Glondu <glondu@debian.org> Wed, 28 Aug 2024 12:34:54 +0200
|
|
7 | + |
|
1 | 8 | fieldslib (1:0.16.0-2) unstable; urgency=medium
|
2 | 9 | |
3 | 10 | * Use ocaml_dune DH buildsystem
|
... | ... | @@ -10,9 +10,9 @@ Build-Depends: |
10 | 10 | ocaml,
|
11 | 11 | ocaml-findlib,
|
12 | 12 | ocaml-dune,
|
13 | - libbase-ocaml-dev (>= 0.14),
|
|
13 | + libbase-ocaml-dev (>= 0.17),
|
|
14 | 14 | dh-ocaml (>= 1.2)
|
15 | -Standards-Version: 4.6.2
|
|
15 | +Standards-Version: 4.7.0
|
|
16 | 16 | Rules-Requires-Root: no
|
17 | 17 | Vcs-Browser: https://salsa.debian.org/ocaml-team/fieldslib
|
18 | 18 | Vcs-Git: https://salsa.debian.org/ocaml-team/fieldslib.git
|
1 | -(lang dune 1.10) |
|
\ No newline at end of file | ||
1 | +(lang dune 3.11) |
1 | 1 | opam-version: "2.0"
|
2 | -version: "v0.16.0"
|
|
2 | +version: "v0.17.0"
|
|
3 | 3 | maintainer: "Jane Street developers"
|
4 | 4 | authors: ["Jane Street Group, LLC"]
|
5 | 5 | homepage: "https://github.com/janestreet/fieldslib"
|
... | ... | @@ -11,9 +11,9 @@ build: [ |
11 | 11 | ["dune" "build" "-p" name "-j" jobs]
|
12 | 12 | ]
|
13 | 13 | depends: [
|
14 | - "ocaml" {>= "4.14.0"}
|
|
15 | - "base" {>= "v0.16" & < "v0.17"}
|
|
16 | - "dune" {>= "2.0.0"}
|
|
14 | + "ocaml" {>= "5.1.0"}
|
|
15 | + "base" {>= "v0.17" & < "v0.18"}
|
|
16 | + "dune" {>= "3.11.0"}
|
|
17 | 17 | ]
|
18 | 18 | available: arch != "arm32" & arch != "x86_32"
|
19 | 19 | synopsis: "Syntax extension to define first class values representing record fields, to get and set record fields, iterate and fold over all fields of a record and create new record values"
|
1 | -(library (name fieldslib) (public_name fieldslib) (libraries base)
|
|
2 | - (preprocess no_preprocessing)) |
|
\ No newline at end of file | ||
1 | +(library
|
|
2 | + (name fieldslib)
|
|
3 | + (public_name fieldslib)
|
|
4 | + (libraries base)
|
|
5 | + (preprocess no_preprocessing)) |