Skip to content

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joseferben committed Nov 18, 2021
1 parent f052191 commit f090b4d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.7.0 - 2021-11-18
### Added
- `Make` functor to customize the error type and the error messages, which be default English `string`s

## 0.6.0 - 2021-05-30
### Added
- Add `Conformist.list` to support decoding list of `'a`
Expand Down
2 changes: 1 addition & 1 deletion conformist.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.6.0"
version: "0.7.0"
synopsis:
"Conformist allows you to define schemas to decode, validate and sanitize input data declaratively"
description: """
Expand Down
15 changes: 6 additions & 9 deletions conformist.opam.locked
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
opam-version: "2.0"
version: "0.5.0"
version: "0.7.0"
synopsis:
"Conformist allows you to define schemas to decode, validate and sanitize input data declaratively"
description: """

Conformist allows you to define schemas to decode, validate and sanitize input data declaratively.
It comes with runtime types for primitive OCaml types such as `int`, `string`, `bool` and `float` but also `Ptime.date`, optional and custom types.
It comes with runtime types for primitive OCaml types such as `int`, `string`, `bool` and `float` but also `Ptime.t`, `option` and custom types.
Re-use business rules in validators and run it on the client side with js_of_ocaml.
Arbitrary meta data can be stored in schemas which is useful to build functionality on top of conformist.
"""
Expand All @@ -16,18 +16,15 @@ homepage: "https://github.com/oxidizing/conformist"
doc: "https://oxidizing.github.io/conformist/"
bug-reports: "https://github.com/oxidizing/conformist/issues"
depends: [
"base-bigarray" {= "base"}
"base-threads" {= "base"}
"base-unix" {= "base"}
"conf-m4" {= "1"}
"dune" {= "2.8.4"}
"ocaml" {= "4.08.1"}
"ocaml-system" {= "4.08.1"}
"dune" {= "2.9.1"}
"ocaml" {= "4.13.1"}
"ocamlbuild" {= "0.14.0"}
"ocamlfind" {= "1.8.1"}
"ocamlfind" {= "1.9.1"}
"ptime" {= "0.8.5"}
"result" {= "1.5"}
"topkg" {= "1.0.3"}
"topkg" {= "1.0.4"}
]
build: [
["dune" "subst"] {dev}
Expand Down
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(generate_opam_files true)

(name conformist)
(version 0.6.0)
(version 0.7.0)

(authors "Josef Erben")
(source (github oxidizing/conformist))
Expand Down

0 comments on commit f090b4d

Please sign in to comment.