File tree 3 files changed +29
-17
lines changed
3 files changed +29
-17
lines changed Original file line number Diff line number Diff line change 1
- 1.0.1 (18-Jun-2019):
1
+ # v1.4.0 (9-Apr-2025)
2
+ * Use ounit2
3
+ * Split lwt code to a different package
4
+
5
+ # v1.3.0 (19-Jan-2021)
6
+ * Update CI
7
+ * Bring back META template
8
+
9
+ # v1.2.0 (10-Jan-2021)
10
+ * Use dune in Makefile
11
+ * Fix license in opam metadata
12
+
13
+ # v1.1.0 (18-Jun-2019):
2
14
* Upgrade build to dune from jbuilder (@avsm )
3
15
* Test OCaml 4.07 in CI (@avsm )
4
16
* Upgrade opam metadata to 2.0 format (@avsm )
5
17
6
- 1 .0.0 (07-Dec-2017):
18
+ # v1 .0.0 (07-Dec-2017):
7
19
* compile with -safe-string
8
20
9
- 0.9.6 (12-Jun-2017):
21
+ # 0.9.6 (12-Jun-2017):
10
22
* add backwards-compat ocamlfind packages
11
23
- xenstore_transport.unix
12
24
- xenstore_transport.lwt
13
25
14
- 0.9.5 (12-Jun-2017):
26
+ # 0.9.5 (12-Jun-2017):
15
27
* unix: search for the xenbus path
16
28
* add more test cases
17
29
* remove camlp4 dependency
18
30
* build with jbuilder
19
31
* travis: use a modern Docker-based setup
20
32
21
- 0.9.4 (16-Jun-2014):
33
+ # 0.9.4 (16-Jun-2014):
22
34
* use the xenbus device if the Unix domain socket isn't available
23
35
* respect the XENSTORED_PATH environment variable
24
36
25
- 0.9.3 (9-May-2014):
37
+ # 0.9.3 (9-May-2014):
26
38
* fix a file descriptor leak when we cannot connect to xenstore
27
39
28
- 0.9.2 (27-Aug-2013):
40
+ # 0.9.2 (27-Aug-2013):
29
41
* adapt to new xenstore signature which makes it easy to write code
30
42
oblivious to whether it's running in Unix userspace or xen
31
43
32
- 0.9.1 (6-Aug-2013):
44
+ # 0.9.1 (6-Aug-2013):
33
45
* update to xenstore 1.2.3
34
46
35
- 0.9.0 (3-Jun-2013):
47
+ # 0.9.0 (3-Jun-2013):
36
48
* first public release
37
49
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ authors: [
14
14
]
15
15
license: "LGPL-2.1-only"
16
16
tags: ["org:mirage" "org:xapi-project"]
17
- homepage: "http ://github.com/xapi-project/ocaml-xenstore-clients"
18
- doc: "http ://xapi-project.github.io/ocaml-xenstore-clients/"
19
- bug-reports: "http ://github.com/xapi-project/ocaml-xenstore-clients/issues"
17
+ homepage: "https ://github.com/xapi-project/ocaml-xenstore-clients"
18
+ doc: "https ://xapi-project.github.io/ocaml-xenstore-clients/"
19
+ bug-reports: "https ://github.com/xapi-project/ocaml-xenstore-clients/issues"
20
20
depends: [
21
21
"ocaml" {>= "4.04.0"}
22
- "dune" {build & >= "1.0"}
22
+ "dune" {>= "1.0"}
23
23
"camlp-streams"
24
24
"lwt"
25
25
"xenstore" {>= "2.0.0"}
@@ -29,7 +29,7 @@ build: [
29
29
["dune" "subst"] {pinned}
30
30
["dune" "build" "-p" name "-j" jobs]
31
31
]
32
- dev-repo: "git+http ://github.com/xapi-project/ocaml-xenstore-clients.git"
32
+ dev-repo: "git+https ://github.com/xapi-project/ocaml-xenstore-clients.git"
33
33
synopsis: "Command line tool for interfacing with xenstore"
34
34
description: """
35
35
This is a CLI `xs` tool for interfacing with XenStore.
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ bug-reports: "http://github.com/xapi-project/ocaml-xenstore-clients/issues"
20
20
depends: [
21
21
"ocaml" {>= "4.04.0"}
22
22
"ocamlfind" {build}
23
- "dune" {build & >= "1.0"}
23
+ "dune" {>= "1.0"}
24
24
"lwt"
25
25
"xenstore" {>= "2.0.0"}
26
26
"ounit2" {with-test}
@@ -29,8 +29,8 @@ build: [
29
29
["dune" "subst"] {pinned}
30
30
["dune" "build" "-p" name "-j" jobs]
31
31
]
32
- dev-repo: "git+http ://github.com/xapi-project/ocaml-xenstore-clients.git"
33
- synopsis: "low -level libraries for connecting to a xenstore service on a xen host. "
32
+ dev-repo: "git+https ://github.com/xapi-project/ocaml-xenstore-clients.git"
33
+ synopsis: "Low -level libraries for connecting to a xenstore service on a xen host"
34
34
description: """
35
35
These libraries contain the IO functions for communicating with a
36
36
xenstore service on a xen host. One subpackage deals with regular Unix
You can’t perform that action at this time.
0 commit comments