Skip to content

Commit 87214e6

Browse files
committed
version commit
1 parent 01016da commit 87214e6

File tree

4 files changed

+43
-9
lines changed

4 files changed

+43
-9
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
44

55
## [unreleased](https://github.com/uzh/guardian/tree/HEAD)
66

7+
## [0.3.2](https://github.com/uzh/guardian/tree/0.3.2) - 2024-03-21
8+
9+
### Changed
10+
11+
- use string preprocessor instead of defining and using sql functions
12+
13+
### Deprecated
14+
15+
- database `start` function, as no functions need to be defined anymore
16+
717
## [0.3.1](https://github.com/uzh/guardian/tree/0.3.1) - 2024-01-22
818

919
### Added

dune-project

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
(name guardian)
66

7-
(version 0.3.1)
7+
(version 0.3.2)
88

99
(license GPL-2.0-or-later)
1010

guardian.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3-
version: "0.3.1"
3+
version: "0.3.2"
44
synopsis: "Role-based access control for OCaml"
55
description:
66
"Defined actors can access targets according to specified rules (allowed actions: CRUD)."

guardian.opam.locked

+31-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
opam-version: "2.0"
2-
version: "0.3.0"
2+
version: "0.3.2"
33
synopsis: "Role-based access control for OCaml"
44
description:
55
"Defined actors can access targets according to specified rules (allowed actions: CRUD)."
@@ -13,30 +13,43 @@ doc: "https://uzh.github.io/guardian"
1313
bug-reports: "https://github.com/uzh/guardian/issues"
1414
depends: [
1515
"angstrom" {= "0.16.0"}
16+
"asn1-combinators" {= "0.2.6"}
1617
"base" {= "v0.16.3"}
1718
"base-bytes" {= "base"}
1819
"base-threads" {= "base"}
1920
"base-unix" {= "base"}
21+
"base64" {= "3.5.1"}
2022
"bigarray-compat" {= "1.1.0"}
2123
"bigstringaf" {= "0.9.1"}
22-
"caqti" {= "2.0.1"}
23-
"caqti-driver-mariadb" {= "2.0.1"}
24-
"caqti-lwt" {= "2.0.1"}
24+
"caqti" {= "2.1.1"}
25+
"caqti-driver-mariadb" {= "2.1.1"}
26+
"caqti-lwt" {= "2.1.1"}
2527
"cmdliner" {= "1.2.0"}
28+
"conf-bash" {= "1"}
2629
"conf-gcc" {= "1.0"}
30+
"conf-gmp" {= "4"}
31+
"conf-gmp-powm-sec" {= "3"}
2732
"conf-mariadb" {= "2"}
2833
"conf-pkg-config" {= "3"}
2934
"containers" {= "3.13.1"}
3035
"containers-data" {= "3.13.1"}
3136
"cppo" {= "1.6.9"}
3237
"csexp" {= "1.5.2"}
38+
"cstruct" {= "6.2.0"}
3339
"ctypes" {= "0.20.2"}
3440
"domain-name" {= "0.4.0"}
35-
"dune" {= "3.12.2"}
36-
"dune-configurator" {= "3.12.2"}
41+
"dune" {= "3.14.2"}
42+
"dune-configurator" {= "3.14.2"}
43+
"dune-private-libs" {= "3.14.2"}
44+
"dune-site" {= "3.14.2"}
45+
"duration" {= "0.2.1"}
46+
"dyn" {= "3.14.2"}
3747
"either" {= "1.0.0"}
48+
"eqaf" {= "0.9"}
3849
"fieldslib" {= "v0.16.0"}
3950
"fmt" {= "0.9.0"}
51+
"gmap" {= "0.3.0"}
52+
"hkdf" {= "1.0.4"}
4053
"integers" {= "0.7.0"}
4154
"ipaddr" {= "5.5.0"}
4255
"logs" {= "0.7.0"}
@@ -45,13 +58,20 @@ depends: [
4558
"lwt_ppx" {= "2.1.0"}
4659
"macaddr" {= "5.5.0"}
4760
"mariadb" {= "1.1.6"}
61+
"mirage-crypto" {= "0.11.3"}
62+
"mirage-crypto-ec" {= "0.11.3"}
63+
"mirage-crypto-pk" {= "0.11.3"}
64+
"mirage-crypto-rng" {= "0.11.3"}
4865
"mtime" {= "2.0.0"}
4966
"ocaml" {= "4.14.1"}
5067
"ocaml-compiler-libs" {= "v0.12.4"}
5168
"ocaml-syntax-shims" {= "1.0.0"}
5269
"ocamlbuild" {= "0.14.3"}
5370
"ocamlfind" {= "1.9.6"}
5471
"ocplib-endian" {= "1.2"}
72+
"ordering" {= "3.14.2"}
73+
"pbkdf" {= "1.2.0"}
74+
"pp" {= "1.2.0"}
5575
"ppx_base" {= "v0.16.0"}
5676
"ppx_cold" {= "v0.16.0"}
5777
"ppx_compare" {= "v0.16.0"}
@@ -64,17 +84,21 @@ depends: [
6484
"ppx_hash" {= "v0.16.0"}
6585
"ppx_sexp_conv" {= "v0.16.0"}
6686
"ppx_string" {= "v0.16.0"}
67-
"ppxlib" {= "0.31.0"}
87+
"ppxlib" {= "0.32.0"}
6888
"ptime" {= "1.1.0"}
6989
"result" {= "1.5"}
7090
"seq" {= "base"}
7191
"sexplib0" {= "v0.16.0"}
7292
"stdlib-shims" {= "0.3.0"}
93+
"stdune" {= "3.14.2"}
7394
"stringext" {= "1.6.0"}
95+
"tls" {= "0.17.3"}
7496
"topkg" {= "1.0.7"}
7597
"uri" {= "4.4.0"}
7698
"uuidm" {= "0.9.8"}
99+
"x509" {= "0.16.5"}
77100
"yojson" {= "2.1.2"}
101+
"zarith" {= "1.13"}
78102
]
79103
build: [
80104
["dune" "subst"] {dev}

0 commit comments

Comments
 (0)