From d9167e0dc649c4e602171d8156deaf68ac9f7dd4 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 28 Aug 2019 10:26:32 +0200 Subject: [PATCH 1/4] prepare for 3.2: thank people --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1345249ad..75dc80ab7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,14 @@ way the logic is used on paper. We also mention some significant changes in the Coq development, but not every API-breaking change is listed. Changes marked `[#]` still need to be ported to the Iris Documentation LaTeX file(s). -## Iris master +## Iris 3.2.0 (unreleased) + +This release of Iris received contributions by Aleš Bizjak, Amin Timany, Dan +Frumin, Glen Mével, Hai Dang, Hugo Herbelin, Jacques-Henri Jourdan, Jan Menz, +Jan-Oliver Kaiser, Jonas Kastberg Hinrichsen, Joseph Tassarotti, Mackie Loeffel, +Marianna Rapoport, Maxime Dénès, Michael Sammler, Paolo G. Giarrusso, +Pierre-Marie Pédrot, Ralf Jung, Robbert Krebbers, Rodolphe Lepigre, and Tej +Chajed. Thanks a lot! Changes in the theory of Iris itself: -- GitLab From 86bba0b8801efb3eaa1432acd2725b013636eaf6 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 28 Aug 2019 14:11:00 +0200 Subject: [PATCH 2/4] short summary of main new features --- CHANGELOG.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75dc80ab7..6073c4d23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,24 @@ Marianna Rapoport, Maxime Dénès, Michael Sammler, Paolo G. Giarrusso, Pierre-Marie Pédrot, Ralf Jung, Robbert Krebbers, Rodolphe Lepigre, and Tej Chajed. Thanks a lot! +The highlight of this release is the completely re-engineered interactive proof +mode. Not only did many tactics become more powerful; the entire proof mode can +now be used not just for Iris but also for other separation logics satisfying +the proof mode interface. + +Beyond that, the Iris program logic gained the ability to reason about +potentially stuck programs, and a significantly strengthened adequacy theorem +that unifies the three previously separately presented theorems. There are now +also Hoare triples for total program correctness (but with very limited support +for invariants) and logical atomicity. + +And finally, our example language HeapLang was made more realistic +(Compare-and-set got replaced by compare-exchange and limited to only compare +values that can actually be compared atomically) and more powerful, with added +support for arrays and prophecy variables. + +Further details are given in the changelog below. + Changes in the theory of Iris itself: * Change in the definition of WP, so that there is a fancy update between @@ -57,7 +75,7 @@ Changes in heap_lang: operator allowed compared closures with each other. * Implement prophecy variables using the new support for "observations". The erasure theorem (showing that prophecy variables do not alter program - behavior) can be found [in the iris/examples repository](https://gitlab.mpi-sws.org/iris/examples/blob/3f33781fe6e19cfdb25259c8194d34403f1134d5/theories/logatom/proph_erasure.v). + behavior) can be found [in the iris/examples repository][prophecy-erasure]. * heap_lang now uses right-to-left evaluation order. This makes it significantly easier to write specifications of curried functions. * heap_lang values are now injected in heap_lang expressions via a specific @@ -70,6 +88,8 @@ Changes in heap_lang: (continuously allocated regions of memory). * One can now assign "meta" data to heap_lang locations. +[prophecy-erasure]: https://gitlab.mpi-sws.org/iris/examples/blob/3f33781fe6e19cfdb25259c8194d34403f1134d5/theories/logatom/proph_erasure.v + Changes in Coq: * An all-new generalized proof mode that abstracts away from Iris! See @@ -80,7 +100,7 @@ Changes in Coq: - `iModIntro` is more flexible and more powerful, it now also subsumes `iNext` and `iAlways`. - General infrastructure for deriving a logic for monotone predicates over - an existing logic (see the paper for more details). + an existing logic (see the paper for more details). Developments instantiating the proof mode typeclasses may need significant changes. For developments just using the proof mode tactics, porting should not be too much effort. Notable things to port are: -- GitLab From eb4d4a60f8c41d160e3d0ccd0c59362a46eb859e Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 28 Aug 2019 14:13:58 +0200 Subject: [PATCH 3/4] wording --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6073c4d23..390d35d61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ Frumin, Glen Mével, Hai Dang, Hugo Herbelin, Jacques-Henri Jourdan, Jan Menz, Jan-Oliver Kaiser, Jonas Kastberg Hinrichsen, Joseph Tassarotti, Mackie Loeffel, Marianna Rapoport, Maxime Dénès, Michael Sammler, Paolo G. Giarrusso, Pierre-Marie Pédrot, Ralf Jung, Robbert Krebbers, Rodolphe Lepigre, and Tej -Chajed. Thanks a lot! +Chajed. Thanks a lot to everyone involved! The highlight of this release is the completely re-engineered interactive proof mode. Not only did many tactics become more powerful; the entire proof mode can -- GitLab From 9bd742a22847f623c82b22b8dc7366ae4ea72fcc Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 28 Aug 2019 20:01:41 +0200 Subject: [PATCH 4/4] add links --- CHANGELOG.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 390d35d61..a12ad3ffa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,12 @@ Chajed. Thanks a lot to everyone involved! The highlight of this release is the completely re-engineered interactive proof mode. Not only did many tactics become more powerful; the entire proof mode can now be used not just for Iris but also for other separation logics satisfying -the proof mode interface. +the proof mode interface (e.g., [Iron] and [GPFSL]). Also see the +[accompanying paper][MoSeL]. + +[Iron]: https://iris-project.org/iron/ +[GPFSL]: https://gitlab.mpi-sws.org/iris/gpfsl/ +[MoSeL]: https://iris-project.org/mosel/ Beyond that, the Iris program logic gained the ability to reason about potentially stuck programs, and a significantly strengthened adequacy theorem @@ -92,8 +97,7 @@ Changes in heap_lang: Changes in Coq: -* An all-new generalized proof mode that abstracts away from Iris! See - for the corresponding paper. Major new +* An all-new generalized proof mode that abstracts away from Iris! Major new features: - The proof mode can now be used with logics derived from Iris (like iGPS), with non-step-indexed logics and even with non-affine (i.e., linear) logics. -- GitLab