Skip to content

Commit

Permalink
Version 0.12.7 (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimikage authored Apr 3, 2021
1 parent 9a2bbd6 commit 7e196c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
name = "Colors"
uuid = "5ae59095-9a9b-59fe-a467-6f913c188581"
version = "0.12.6"
version = "0.12.7"

[deps]
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"

[compat]
Expand All @@ -15,7 +14,8 @@ Reexport = "0.2, 1.0"
julia = "1"

[extras]
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
test = ["InteractiveUtils", "Test"]
2 changes: 1 addition & 1 deletion docs/src/colormapsandcolorscales.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ julia> c2 = colorant"green"
RGB{N0f8}(0.0,0.502,0.0)
julia> range(c1, stop=c2, length=15)
15-element Array{RGB{N0f8},1} with eltype RGB{FixedPointNumbers.Normed{UInt8,8}}:
15-element Array{RGB{N0f8},1} with eltype RGB{FixedPointNumbers.N0f8}:
RGB{N0f8}(1.0,0.0,0.0)
RGB{N0f8}(0.929,0.035,0.0)
RGB{N0f8}(0.859,0.071,0.0)
Expand Down
3 changes: 2 additions & 1 deletion test/utilities.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Colors, FixedPointNumbers, Test, InteractiveUtils
using Colors, FixedPointNumbers, Test
using InteractiveUtils # for `subtypes`

@testset "Utilities" begin
# issue #351
Expand Down

2 comments on commit 7e196c2

@kimikage
Copy link
Collaborator Author

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/33461

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 v0.12.7 -m "<description of version>" 7e196c2a580b47518db750e12a069848f748b679
git push origin v0.12.7

Please sign in to comment.