Skip to content

Commit 4f07b7a

Browse files
committed
prepare for 0.5
1 parent 4f3ed6a commit 4f07b7a

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.5
2+
3+
- format C and OCaml code
4+
- add `pp_value` and `string_of_value`
5+
16
## 0.4
27

38
- move to github actions for CI

minisat.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
opam-version: "2.0"
2-
version: "0.4"
2+
version: "0.5"
33
author: "simon.cruanes.2007@m4x.org"
44
maintainer: "simon.cruanes.2007@m4x.org"
55
synopsis: "Bindings to Minisat-C-1.14.1, with the solver included"

src/minisat.mli

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ type value =
9898
| V_false
9999

100100
val string_of_value : value -> string
101-
(** @since NEXT_RELEASE *)
101+
(** @since 0.5 *)
102102

103103
val pp_value : value printer
104-
(** @since NEXT_RELEASE *)
104+
(** @since 0.5 *)
105105

106106
val value : t -> Lit.t -> value
107107
(** Returns the assignation of a literal in the solver state.

0 commit comments

Comments
 (0)