Skip to content

Commit

Permalink
Merge pull request #956 from JuliaImages/jc/images002401
Browse files Browse the repository at this point in the history
Images v0.24.1
  • Loading branch information
johnnychen94 authored Apr 27, 2021
2 parents 21ddf3c + a834129 commit bff89d1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name = "Images"
uuid = "916415d5-f1e6-5110-898d-aaa5f9f070e0"
version = "0.24.0"
version = "0.24.1"

[deps]
AxisArrays = "39de3d68-74b9-583c-8d2d-e117c070f3a9"
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
ColorVectorSpace = "c3611d14-8923-5661-9e6a-0046d554d3a4"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
Graphics = "a2bd30eb-e257-5431-a919-1863eab51364"
ImageAxes = "2803e5a7-5153-5ecf-9a86-9b4c37f5f5ac"
Expand All @@ -31,11 +32,12 @@ TiledIteration = "06e1c1a7-607b-532d-9fad-de7d9aa2abac"

[compat]
AxisArrays = "0.3, 0.4"
ColorVectorSpace = "0.6, 0.7, 0.8, 0.9"
FileIO = "1"
Graphics = "0.4, 1.0"
ImageAxes = "0.6"
ImageContrastAdjustment = "0.3.3"
ImageCore = "0.9"
ImageCore = "0.8.3"
ImageDistances = "0.2.5"
ImageFiltering = "0.6.3"
ImageIO = "0.3, 0.4, 0.5"
Expand Down
6 changes: 5 additions & 1 deletion src/Images.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,12 @@ using Reexport
if isdefined(ImageCore, :permuteddimsview)
export permuteddimsview
end
if isdefined(ColorTypes, :XRGB) && isdefined(ColorTypes, :RGB1)
Base.@deprecate_binding RGB1 XRGB
Base.@deprecate_binding RGB4 RGBX
end

using FileIO
using ColorVectorSpace, FileIO
export load, save
import .Colors: Fractional
import Graphics
Expand Down

2 comments on commit bff89d1

@johnnychen94
Copy link
Member 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/35437

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

Please sign in to comment.