Skip to content

Commit

Permalink
move 1.0 (#19)
Browse files Browse the repository at this point in the history
* bump to 1.0

* add Aqua to tests
  • Loading branch information
palday authored Apr 14, 2023
1 parent 0d72609 commit 276de8c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MixedModelsExtras"
uuid = "781a26e1-49f4-409a-8f4c-c3159d78c17e"
authors = ["Phillip Alday <[email protected]> and contributors"]
version = "0.1.7"
version = "1.0.0"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 2 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[deps]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
GLM = "38e38edf-8417-5370-95a0-9cbb8c7f171a"
Expand All @@ -11,5 +12,6 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
Aqua = "0.6"
DataFrames = "1"
StableRNGs = "1"
6 changes: 6 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
using Aqua
using MixedModelsExtras
using Test

@testset "Aqua" begin
# it's not piracy for StatsAPI.r2(::MixedModel), it's privateering!
Aqua.test_all(MixedModelsExtras; ambiguities=false, piracy=false)
end

@testset "ICC" begin
include("icc.jl")
end
Expand Down

2 comments on commit 276de8c

@palday
Copy link
Owner Author

@palday palday commented on 276de8c Apr 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/81633

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.0 -m "<description of version>" 276de8c1edadd508d362137b32aafef1e578206c
git push origin v1.0.0

Please sign in to comment.