Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
gares committed Mar 1, 2020
1 parent 7d2af42 commit 6f33163
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
# Changelog

## [1.3.1] - UNRELEASED

Porting to Coq 8.11
## [1.3.1] - 2020-03-01

Port to Coq 8.11, two API changes:
- `field` constructor of `indt-decl` takes an argument of type
`field-attributes` rather than a simple `bool`. The macro `@coercion!` works
in both versions, as well as omitting the attribute using `_`. In 8.11 it is
possible to disable canonical inference for a field using the
`(canonical false)` attribute.
- `coq.env.add-abbreviation` takes an extra argument (deprecation info). Code
working on both versions can be obtained as follows:
```prolog
if (coq.version _ 8 10 _)
(std.unsafe-cast coq.notation.add-abbreviation F, F ... Abbrev)
(std.unsafe-cast coq.notation.add-abbreviation G, G ... Deprecation Abbrev).
```

## [1.3.0] - 2020-02-27

Expand Down

0 comments on commit 6f33163

Please sign in to comment.