Stéphane Glondu pushed to branch upstream at Debian OCaml Maintainers / biniou


Commits:
88676929 by Stéphane Glondu at 2023-01-20T11:16:39+01:00
New upstream version 1.2.2
- - - - -


6 changed files:

- CHANGES.md
- + CODEOWNERS
- README.md
- biniou.opam
- dune-project
- src/dune


Changes:

=====================================
CHANGES.md
=====================================
@@ -1,3 +1,8 @@
+1.2.2 (2022-16-06)
+------------------
+
+- 5.0 compatibilty. Depend on camlp-streams explicitly (#31)
+
 1.2.1 (2019-08-02)
 ------------------
 


=====================================
CODEOWNERS
=====================================
@@ -0,0 +1,3 @@
+# If you'd like to become the official maintainer for this project, please
+# let us know.
+* @rgrinberg


=====================================
README.md
=====================================
@@ -1,7 +1,3 @@
-**This project is unmaintained. Pull requests won't be reviewed.
-  If you would like to contribute, please request a transfer to
-  [ocaml-community](https://github.com/ocaml-community/meta).**
-  
 Biniou
 ======
 
@@ -9,7 +5,7 @@ Biniou (pronounced "be new") is a binary data format designed 
for speed,
 safety, ease of use and backward compatibility as protocols evolve.
 Biniou is vastly equivalent to JSON in terms of functionality but allows
 implementations several times faster (4 times faster than
-[yojson](https://github.com/mjambon/yojson)), with
+[yojson](https://github.com/ocaml-community/yojson)), with
 25-35% space savings.
 
 Biniou data can be decoded into human-readable form without knowledge
@@ -17,9 +13,8 @@ of type definitions except for field and variant names which 
are
 represented by 31-bit hashes. A program named `bdump` is provided for
 routine visualization of biniou data files.
 
-The program [atdgen](https://mjambon.github.io/atdgen-doc/)
+The program [atdgen](https://atd.readthedocs.io/)
 is used to derive OCaml-Biniou serializers and
 deserializers from type definitions.
 
-Biniou format specification:
-https://mjambon.github.io/atdgen-doc/biniou-format.txt
+Biniou format specification: [biniou-format.txt](biniou-format.txt)


=====================================
biniou.opam
=====================================
@@ -33,6 +33,7 @@ from type definitions.
 Biniou format specification: mjambon.github.io/atdgen-doc/biniou-format.txt"""
 depends: [
   "easy-format"
+  "camlp-streams"
   "dune" {>= "1.10"}
   "ocaml" {>= "4.02.3"}
 ]


=====================================
dune-project
=====================================
@@ -30,5 +30,6 @@ from type definitions.
 Biniou format specification: mjambon.github.io/atdgen-doc/biniou-format.txt")
  (depends
   easy-format
+  camlp-streams
   (dune (>= 1.10))
   (ocaml (>= "4.02.3"))))


=====================================
src/dune
=====================================
@@ -4,4 +4,4 @@
  (synopsis "Extensible binary serialization format")
  (wrapped false)
  (flags -safe-string)
- (libraries easy-format))
+ (libraries easy-format camlp-streams))



View it on GitLab: 
https://salsa.debian.org/ocaml-team/biniou/-/commit/886769294b3d0824a2cec433484261d60e45c2e1

-- 
View it on GitLab: 
https://salsa.debian.org/ocaml-team/biniou/-/commit/886769294b3d0824a2cec433484261d60e45c2e1
You're receiving this email because of your account on salsa.debian.org.


Reply via email to