Skip to content

Commit 87e31c4

Browse files
committed
added tests and news.md entry for alias functions profilesigma and settheta
1 parent b6bcb2f commit 87e31c4

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
MixedModels v4.30.2 Release Notes
2+
==============================
3+
- Added aliases `settheta!` and `profilesigma` for the functions `setθ!` and `profileσ` respectively
4+
15
MixedModels v4.30.0 Release Notes
26
==============================
37
- Refactor calls to backend optimizer to make it easier to add and use different optimization backends.

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 <me@phillipalday.com>", "Douglas Bates <dmbates@gmail.com>"]
4-
version = "4.30.1"
4+
version = "4.30.2"
55

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

test/misc.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ using MixedModels: dataset
1616
@test_throws MixedModels._MISSING_RE_ERROR MixedModel(@formula(yield ~ 0 + batch), dyestuff, Poisson())
1717
@test_throws MixedModels._MISSING_RE_ERROR MixedModel(@formula(yield ~ 1), dyestuff, Poisson())
1818
end
19+
20+
@testset "non-unicode function aliases for exports" begin
21+
@test settheta! === setθ!
22+
@test profilesigma === profileσ
23+
end

0 commit comments

Comments
 (0)