Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Paolo G. Giarrusso
iris
Commits
960587f4
Commit
960587f4
authored
1 year ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
CHANGELOG.
parent
96418009
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CHANGELOG.md
+14
-0
14 additions, 0 deletions
CHANGELOG.md
with
14 additions
and
0 deletions
CHANGELOG.md
+
14
−
0
View file @
960587f4
...
...
@@ -19,6 +19,9 @@ lemma.
*
Change statement of
`Z_local_update`
to be more intuitive. It now says
`x - y = x' - y' → (x,y) ~l~> (x',y')`
, i.e., the difference between the
authoritative element and the fragment must stay the same.
*
Rename
`cmra_discrete_update`
→
`cmra_discrete_total_update`
and
`cmra_discrete_updateP`
→
`cmra_discrete_total_updateP`
. Repurpose original
names for lemmas that only require
`CmraDiscrete`
, not
`CmraTotal`
.
**Changes in `proofmode`:**
...
...
@@ -29,6 +32,17 @@ lemma.
`MaybeFrame`
class has become notation for
`TCNoBackTrack (MaybeFrame' ...)`
,
which means the proofs of your instances might need a slight refactoring.
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
# discrete camera updates
s/\bcmra_discrete_update\b/cmra_discrete_total_update/g
s/\bcmra_discrete_updateP\b/cmra_discrete_total_updateP/g
EOF
```
## Iris 4.1.0 (2023-10-11)
This Iris release mostly features quality-of-life improvements, such as smarter
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment