Skip to content
Snippets Groups Projects
Commit f7271e52 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

CHANGELOG.

parent 893f1ab0
No related branches found
No related tags found
No related merge requests found
...@@ -17,12 +17,23 @@ lemma. ...@@ -17,12 +17,23 @@ lemma.
* The proof mode introduction patterns "<-" and "->" are considered * The proof mode introduction patterns "<-" and "->" are considered
intuitionistic. This means that tactics such as `iDestruct ... as "->"` will intuitionistic. This means that tactics such as `iDestruct ... as "->"` will
not dispose of hypotheses to perform the rewrite. not dispose of hypotheses to perform the rewrite.
* Remove tactic `iSolveTC` in favor of `tc_solve` in std++.
**LaTeX changes:** **LaTeX changes:**
- Rename `\Alloc` to `\AllocN` and `\Ref` to `\Alloc` for better consistency - Rename `\Alloc` to `\AllocN` and `\Ref` to `\Alloc` for better consistency
with the Coq names and to avoid clash with hyperref package. with the Coq names and to avoid clash with hyperref package.
The following `sed` script helps adjust your code to the renaming (on macOS,
replace `sed` by `gsed`, installed via e.g. `brew install gnu-sed`).
Note that the script is not idempotent, do not run it twice.
```
sed -i -E -f- $(find theories -name "*.v") <<EOF
# iSolveTC
s/iSolveTC\b/tc_solve/g
EOF
```
The following sed script helps adjust LaTeX documents to these changes: The following sed script helps adjust LaTeX documents to these changes:
Note that the script is not idempotent, do not run it twice. Note that the script is not idempotent, do not run it twice.
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment