Skip to content

Commit 1086e75

Browse files
usage of ProgressUnknown fixed (#720)
* usage of ProgressUnknown fixed * whitspace * Formatting * patch bump --------- Co-authored-by: Phillip Alday <[email protected]> Co-authored-by: Phillip Alday <[email protected]>
1 parent 37b8d38 commit 1086e75

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MixedModels"
22
uuid = "ff71e718-51f3-5ec2-a782-8ffcbfa3c316"
33
author = ["Phillip Alday <[email protected]>", "Douglas Bates <[email protected]>", "Jose Bayoan Santiago Calderon <[email protected]>"]
4-
version = "4.22.0"
4+
version = "4.22.1"
55

66
[deps]
77
Arrow = "69666777-d1a9-59fb-9406-91d4454c9d45"

src/generalizedlinearmixedmodel.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ function StatsAPI.fit!(
278278
optsum.final = copy(optsum.initial)
279279
end
280280
setpar! = fast ? setθ! : setβθ!
281-
prog = ProgressUnknown("Minimizing"; showspeed=true)
281+
prog = ProgressUnknown(; desc="Minimizing", showspeed=true)
282282
# start from zero for the initial call to obj before optimization
283283
iter = 0
284284
fitlog = optsum.fitlog

src/linearmixedmodel.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ function StatsAPI.fit!(
457457
end
458458
opt = Opt(optsum)
459459
optsum.REML = REML
460-
prog = ProgressUnknown("Minimizing"; showspeed=true)
460+
prog = ProgressUnknown(; desc="Minimizing", showspeed=true)
461461
# start from zero for the initial call to obj before optimization
462462
iter = 0
463463
fitlog = optsum.fitlog

0 commit comments

Comments
 (0)