diff --git a/src/plugins/githubpages.jl b/src/plugins/githubpages.jl index 92002e1..10a28a9 100644 --- a/src/plugins/githubpages.jl +++ b/src/plugins/githubpages.jl @@ -36,9 +36,9 @@ function badges(::GitHubPages, user::AbstractString, pkg_name::AbstractString) "https://$user.github.io/$pkg_name.jl/stable" )), format(Badge( - "Latest", - "https://img.shields.io/badge/docs-latest-blue.svg", - "https://$user.github.io/$pkg_name.jl/latest" + "Dev", + "https://img.shields.io/badge/docs-dev-blue.svg", + "https://$user.github.io/$pkg_name.jl/dev" )), ] end diff --git a/test/plugins/githubpages.jl b/test/plugins/githubpages.jl index ba1104e..6128ba7 100644 --- a/test/plugins/githubpages.jl +++ b/test/plugins/githubpages.jl @@ -15,7 +15,7 @@ pkg_dir = joinpath(t.dir, test_pkg) p = GitHubPages() @test badges(p, me, test_pkg) == [ "[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://$me.github.io/$test_pkg.jl/stable)" - "[![Latest](https://img.shields.io/badge/docs-latest-blue.svg)](https://$me.github.io/$test_pkg.jl/latest)" + "[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://$me.github.io/$test_pkg.jl/dev)" ] end