Skip to content

Commit 00f826e

Browse files
authored
chore: bump to v4.20.1 (#302)
1 parent 8e44e0d commit 00f826e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

MIL/C06_Discrete_Mathematics/S02_Counting_Arguments.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ example (n : ℕ) : #(triangle n) = (n + 1) * n / 2 := by
117117
intro x _ y _ xney
118118
simp [disjoint_iff_ne, xney]
119119
-- continue the calculation
120-
transitivity (∑ i in range (n+1), i)
120+
transitivity (∑ i range (n + 1), i)
121121
· congr; ext i
122122
rw [card_image_of_injective, card_range]
123123
intros i1 i2; simp

MIL/C08_Hierarchies/S03_Subobjects.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ instance [Group G] (H : Subgroup₁ G) : Group H :=
132132
inv := fun x ↦ ⟨x⁻¹, H.inv_mem x.property⟩
133133
inv_mul_cancel := fun x ↦ SetCoe.ext (inv_mul_cancel (x : G)) }
134134

135-
class SubgroupClass₁ (S : Type) (G : Type) [Group G] [SetLike S G]
136-
extends SubmonoidClass₁ S G : Prop where
135+
class SubgroupClass₁ (S : Type) (G : Type) [Group G] [SetLike S G] : Prop
136+
extends SubmonoidClass₁ S G where
137137
inv_mem : ∀ (s : S) {a : G}, a ∈ s → a⁻¹ ∈ s
138138

139139
instance [Group G] : SubmonoidClass₁ (Subgroup₁ G) G where

lake-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"type": "git",
66
"subDir": null,
77
"scope": "",
8-
"rev": "c211948581bde9846a99e32d97a03f0d5307c31e",
8+
"rev": "5c0c94b3f563ed756b48b9439788c53b0d56a897",
99
"name": "mathlib",
1010
"manifestFile": "lake-manifest.json",
11-
"inputRev": "v4.20.0",
11+
"inputRev": "v4.20.1",
1212
"inherited": false,
1313
"configFile": "lakefile.lean"},
1414
{"url": "https://github.com/leanprover-community/plausible",

lakefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ relaxedAutoImplicit = false
99
[[require]]
1010
name = "mathlib"
1111
git = "https://github.com/leanprover-community/mathlib4"
12-
rev = "v4.20.0"
12+
rev = "v4.20.1"
1313

1414
[[lean_lib]]
1515
name = "MIL"

lean-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
leanprover/lean4:v4.20.0
1+
leanprover/lean4:v4.20.1

0 commit comments

Comments
 (0)