Skip to content

Commit

Permalink
Backport #395 and Release v0.10.2 (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimikage authored and timholy committed Jan 9, 2020
1 parent be6c092 commit 42b7cdf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Colors"
uuid = "5ae59095-9a9b-59fe-a467-6f913c188581"
version = "0.10.1"
version = "0.10.2"

[deps]
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
Expand Down
6 changes: 4 additions & 2 deletions src/Colors.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ include("colormaps.jl")
include("display.jl")
include("colormatch.jl")

include("precompile.jl")
_precompile_()
if VERSION >= v"1.1" # work around https://github.com/JuliaLang/julia/issues/34121
include("precompile.jl")
_precompile_()
end

end # module

3 comments on commit 42b7cdf

@timholy
Copy link
Member

@timholy timholy commented on 42b7cdf Jan 9, 2020

Choose a reason for hiding this comment

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

@JuliaRegistrator register(branch=release-0.10)

@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/7702

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.10.2 -m "<description of version>" 42b7cdf7e63d7ba20eae2b0b9a4b4f7d35a9e447
git push origin v0.10.2

@kimikage
Copy link
Collaborator Author

@kimikage kimikage commented on 42b7cdf Jan 9, 2020

Choose a reason for hiding this comment

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

FWIW, the following is the history of the release announce before correction:

v0.10.2 (2020-01-09)

Diff since v0.11.2

Closed issues:

Merged pull requests:

Please sign in to comment.