Skip to content

Commit 2717bbe

Browse files
committed
Update CHANGES.md and version number
1 parent b85de11 commit 2717bbe

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change log for the coq-waterproof library
22

3+
## Version 3.1.0+9.0
4+
5+
- No longer throw an error if there are unused lemmas (this speeds up automation when using `By ... it holds that ...`)
6+
- Remove parentheses in suggestions
7+
- Fix issue with keywords
8+
- Allow for multiple reasons in `By ...`-clause
9+
- Add framework for registering definitions and alternative characterizations
10+
- Add Expand All functionality to Help
11+
- Simplify ffi mechanism
12+
313
## Version 3.0.0+9.0
414

515
- Remove need for parentheses in many places

coq-waterproof.opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
opam-version: "2.0"
22
name: "coq-waterproof"
3-
version: "3.0.1+9.0-dev"
3+
version: "3.1.0+9.0"
44
maintainer: "Jim Portegies <[email protected]>"
55
authors: [
66
"Jelle Wemmenhove"
77
"Pim Otte"
88
"Balthazar Pathiachvili"
9+
"Dick Arends"
910
"Cosmin Manea"
1011
"Lulof Pirée"
1112
"Adrian Vrămuleţ"

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
(package
77
(name coq-waterproof)
8-
(version 3.0.1+9.0-dev)
8+
(version 3.1.0+9.0)
99
(synopsis "Coq proofs in a style that resembles non-mechanized mathematical proofs")
1010
(depends rocq-core rocq-stdlib))

src/g_waterproof.mlg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ DECLARE PLUGIN "coq-waterproof.plugin"
2222
open Exceptions
2323
open Waterprove
2424

25-
let waterproof_version : string = "3.0.1+9.0-dev"
25+
let waterproof_version : string = "3.1.0+9.0"
2626

2727
(* The code below is a hack to patch in (open_)lconstr into Ltac2 *)
2828
(* It should be removed when merged to coq-master (open_)lconstr should be in release 9.1 *)

0 commit comments

Comments
 (0)