Skip to content

Commit 29ff369

Browse files
authored
chore: bump to v4.4.0 (leanprover-community#26)
* chore: bump to v4.4.0 * fixes
1 parent 9c594e3 commit 29ff369

7 files changed

+29
-6
lines changed

lake-manifest.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
{"version": 5, "packagesDir": "lake-packages", "packages": []}
1+
{"version": 7,
2+
"packagesDir": ".lake/packages",
3+
"packages": [],
4+
"name": "REPL",
5+
"lakeDir": ".lake"}

lean-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
leanprover/lean4:v4.4.0-rc1
1+
leanprover/lean4:v4.4.0

test/Mathlib/ReplMathlibTests.lean

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import Mathlib

test/Mathlib/lake-manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[{"url": "https://github.com/leanprover/std4",
55
"type": "git",
66
"subDir": null,
7-
"rev": "baf6defee1fe881ae535519c0776f37f6ef08603",
7+
"rev": "af7f36db6e7e9e395710a70635f915e8e3a0e69b",
88
"name": "std",
99
"manifestFile": "lake-manifest.json",
1010
"inputRev": "main",
@@ -22,7 +22,7 @@
2222
{"url": "https://github.com/leanprover-community/aesop",
2323
"type": "git",
2424
"subDir": null,
25-
"rev": "3141402ba5a5f0372d2378fd75a481bc79a74ecf",
25+
"rev": "646be3a3604d0f2a3c1800cb4279a36493474b18",
2626
"name": "aesop",
2727
"manifestFile": "lake-manifest.json",
2828
"inputRev": "master",
@@ -49,7 +49,7 @@
4949
{"url": "https://github.com/leanprover-community/mathlib4",
5050
"type": "git",
5151
"subDir": null,
52-
"rev": "561ab0981d6df710afb3d34423378152195e3440",
52+
"rev": "cf8e23a62939ed7cc530fbb68e83539730f32f86",
5353
"name": "mathlib",
5454
"manifestFile": "lake-manifest.json",
5555
"inputRev": "master",

test/Mathlib/lakefile.lean

+2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@ package «repl-mathlib-tests» where
55
-- add package configuration options here
66
require mathlib from git "https://github.com/leanprover-community/mathlib4" @ "master"
77

8+
@[default_target]
89
lean_lib «ReplMathlibTests» where
10+
globs := #[.submodules `test]
911
-- add library configuration options here

test/Mathlib/lean-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
leanprover/lean4:v4.4.0-rc1
1+
leanprover/lean4:v4.4.0

test/Mathlib/test/H20231214.lean

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@ open Real
33
open Nat
44
open BigOperators
55

6+
/--
7+
error: type mismatch
8+
h₀ x
9+
has type
10+
p x = 2 - x ^ 2 : Prop
11+
but is expected to have type
12+
p x = 6 / x * p x : Prop
13+
---
14+
error: unsolved goals
15+
p q : ℝ → ℝ
16+
h₀ : ∀ (x : ℝ), p x = 2 - x ^ 2
17+
h₁ : ∀ (x : ℝ), x ≠ 0 → q x = 6 / x
18+
hQ : ∀ (x : ℝ), p x = 6 / x
19+
⊢ p (q 2) = -7
20+
-/
21+
#guard_msgs in
622
theorem mathd_algebra_35
723
(p q : ℝ → ℝ)
824
(h₀ : ∀ x, p x = 2 - x^2)

0 commit comments

Comments
 (0)