From 11a85c86bd85854c03e0c6f83fe29dea7979a189 Mon Sep 17 00:00:00 2001
From: Simon Spies <simonspies@icloud.com>
Date: Thu, 21 Nov 2024 17:39:47 +0100
Subject: [PATCH] bump the version numbers in the installation instructions

---
 README.md | 60 +++++++++++++++++++++++++++----------------------------
 1 file changed, 30 insertions(+), 30 deletions(-)

diff --git a/README.md b/README.md
index fd17c865..6c33a85c 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # TRANSFINITE IRIS COQ DEVELOPMENT
 
-This is the Coq development of the Transfinite Iris project. 
+This is the Coq development of the Transfinite Iris project.
 It is based on the Coq development of the [Iris Project](http://iris-project.org),
 which includes [MoSeL](http://iris-project.org/mosel/), a general proof mode
 for carrying out separation logic proofs in Coq.
@@ -13,7 +13,7 @@ For using Transfinite Iris and inspecting the development interactively, it need
 
 This version is known to compile with:
 
- - Coq 8.10.2
+ - Coq 8.11.2
  - Iris-stdpp 1.3.0 ([std++](https://gitlab.mpi-sws.org/iris/stdpp))
 
 We assume that you have opam (2.0 or newer; tested with 2.0.7) available for the following instructions.
@@ -23,25 +23,25 @@ We assume that you have opam (2.0 or newer; tested with 2.0.7) available for the
 1. Setup a new opam switch and switch to it:
   ```
   opam update
-  opam switch create iris-transfinite 4.07.1+flambda
+  opam switch create iris-transfinite 4.10.2+flambda
   eval $(opam env)
   ```
 
-2. Add the Coq opam repository: 
+2. Add the Coq opam repository:
 ```
   opam repo add coq-released https://coq.inria.fr/opam/released
 ```
-3. Run `make build-dep` to install the right versions of the dependencies, 
-   in particular Coq 8.10.2 and coq-stdpp 1.3.0.
+3. Run `make build-dep` to install the right versions of the dependencies,
+   in particular Coq 8.11.2 and coq-stdpp 1.3.0.
 
 4. Run `make -jN` to build the full development, where `N` is the number of threads
    to use for the build process.
 
 ## Directory Structure
 
-* The folder [ordinals](theories/algebra/ordinals) contains a formalisation of 
-  von Neumann ordinals and basic ordinal arithmetic. 
-* The folder [algebra](theories/algebra) contains step-index types, 
+* The folder [ordinals](theories/algebra/ordinals) contains a formalisation of
+  von Neumann ordinals and basic ordinal arithmetic.
+* The folder [algebra](theories/algebra) contains step-index types,
   the COFE and CMRA constructions as well as the solver for recursive domain equations.
 * The folder [base_logic](theories/base_logic) defines the Iris base logic and
   the primitive connectives.  It also contains derived constructions that are
@@ -65,29 +65,29 @@ We assume that you have opam (2.0 or newer; tested with 2.0.7) available for the
   [ProofMode.md](ProofMode.md).
 * The folder [heap_lang](theories/heap_lang) defines the ML-like concurrent heap
   language.
-* The folder [examples](theories/examples) contains examples executed in 
+* The folder [examples](theories/examples) contains examples executed in
   Transfinite Iris. See below for a detailed summary.
 
 ## Examples
 
 The following is a list of examples we have done in Transfinite Iris.
-* The key notions of simulations and generalized simulations used for the 
+* The key notions of simulations and generalized simulations used for the
   key ideas section of the paper are formalized in [keyideas](theories/examples/keyideas).
-* Counterexamples for some negative statements in the paper are formalized in 
+* Counterexamples for some negative statements in the paper are formalized in
   [counterexamples.v](theories/examples/counterexamples.v)
-* [safety](theories/examples/safety) contains examples for safety reasoning taken 
+* [safety](theories/examples/safety) contains examples for safety reasoning taken
   from existing work that we have ported to Transfinite Iris.
 * [termination](theories/examples/termination) contains proofs of termination:
   * [eventloop](theories/examples/termination/eventloop.v) contains the verification
     of the eventloop example from the paper.
   * [thunk](theories/examples/termination/thunk.v) contains the verification of a thunk example.
-  * [logrel](theories/examples/termination/logrel.v) formalizes and extends the 
-    logical relation for termination by Spies et al, "Transfinite Step-Indexing for Termination" 
+  * [logrel](theories/examples/termination/logrel.v) formalizes and extends the
+    logical relation for termination by Spies et al, "Transfinite Step-Indexing for Termination"
 * [refinements](theories/examples/refinements) contains the termination-preserving refinement
   examples from the paper.
   * [derived] (theories/examples/refinements/derived.v) contains the derived Hoare triples shown in the paper.
   * [refinement](theories/examples/refinements/refinement.v) contains the HeapLang source language.
-  * [memoization](theories/examples/refinement/memoization.v) provides memoization functions and 
+  * [memoization](theories/examples/refinement/memoization.v) provides memoization functions and
     the following examples:
     * Fibonacci function
     * Levenshtein distance
@@ -103,25 +103,25 @@ The following table references the corresponding theorems as well as some additi
 | Lemma 2.1 | [simulations/sim_is_rpr](theories/examples/keyideas/simulations.v) |
 | Lemma 2.2 | [simulations/sim_is_tpr](theories/examples/keyideas/simulations.v) |
 | Hoare Proof Rules of Figure 1 | [derived](theories/examples/refinements/derived.v) |
-| Theorem 3.3 (Refinement Adequacy) | [heap_lang_ref_adequacy](theories/examples/refinements/refinement.v) | 
-| Definition of memo_rec | [mem_rec](theories/examples/refinements/memoization.v) | 
-| PureMemoRec (simpl) | [natfun_mem_rec_spec](theories/examples/refinements/memoization.v) | 
-| Levenshtein and Fibonacci | [memoization](theories/examples/refinements/memoization.v) | 
-| Theorem 4.1 (Time Credits Adequacy) | [heap_lang_ref_adequacy](theories/examples/termination/adequacy.v) | 
-| Reentrant Event Loop | [event_loop](theories/examples/termination/eventloop.v) | 
-| Logical Relation for Termination | [logrel_adequacy](theories/examples/termination/logrel.v) | 
+| Theorem 3.3 (Refinement Adequacy) | [heap_lang_ref_adequacy](theories/examples/refinements/refinement.v) |
+| Definition of memo_rec | [mem_rec](theories/examples/refinements/memoization.v) |
+| PureMemoRec (simpl) | [natfun_mem_rec_spec](theories/examples/refinements/memoization.v) |
+| Levenshtein and Fibonacci | [memoization](theories/examples/refinements/memoization.v) |
+| Theorem 4.1 (Time Credits Adequacy) | [heap_lang_ref_adequacy](theories/examples/termination/adequacy.v) |
+| Reentrant Event Loop | [event_loop](theories/examples/termination/eventloop.v) |
+| Logical Relation for Termination | [logrel_adequacy](theories/examples/termination/logrel.v) |
 | Ordinals validate the existential property | [set_model_large_index](theories/algebra/ordinals/ord_stepindex.v) |
-| Theorem 5.3 | [fixpoint](theories/algebra/ofe.v) | 
-| Model Construction (Theorem 5.4) | [iprop](theories/base_logic/lib/iprop.v) | 
-| Theorem 5.5 | [no_later_existential_commuting](theories/examples/counterexamples.v) | 
+| Theorem 5.3 | [fixpoint](theories/algebra/ofe.v) |
+| Model Construction (Theorem 5.4) | [iprop](theories/base_logic/lib/iprop.v) |
+| Theorem 5.5 | [no_later_existential_commuting](theories/examples/counterexamples.v) |
 
 ## Acknowledgements
 
-The mechanization of set-theoretic ordinals and the underlying ZF model construction 
-has been based on Coq code by Dominik Kirst and Gert Smolka, available at: 
+The mechanization of set-theoretic ordinals and the underlying ZF model construction
+has been based on Coq code by Dominik Kirst and Gert Smolka, available at:
 
 * "Large Model Constructions for Second-Order ZF in Dependent Type Theory"
   by Dominik Kirst and Gert Smolka, CPP 2018
   See https://www.ps.uni-saarland.de/Publications/details/KirstSmolka:2017:Large-Model.html.
-* "Formalised Set Theory: Well-Orderings and the Axiom of Choice", Dominik Kirst. 
-  See https://www.ps.uni-saarland.de/~kirst/bachelor.php 
+* "Formalised Set Theory: Well-Orderings and the Axiom of Choice", Dominik Kirst.
+  See https://www.ps.uni-saarland.de/~kirst/bachelor.php
-- 
GitLab