Skip to content

Commit bff89d1

Browse files
authored
Merge pull request #956 from JuliaImages/jc/images002401
Images v0.24.1
2 parents 21ddf3c + a834129 commit bff89d1

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Project.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
name = "Images"
22
uuid = "916415d5-f1e6-5110-898d-aaa5f9f070e0"
3-
version = "0.24.0"
3+
version = "0.24.1"
44

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

3233
[compat]
3334
AxisArrays = "0.3, 0.4"
35+
ColorVectorSpace = "0.6, 0.7, 0.8, 0.9"
3436
FileIO = "1"
3537
Graphics = "0.4, 1.0"
3638
ImageAxes = "0.6"
3739
ImageContrastAdjustment = "0.3.3"
38-
ImageCore = "0.9"
40+
ImageCore = "0.8.3"
3941
ImageDistances = "0.2.5"
4042
ImageFiltering = "0.6.3"
4143
ImageIO = "0.3, 0.4, 0.5"

src/Images.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,12 @@ using Reexport
3131
if isdefined(ImageCore, :permuteddimsview)
3232
export permuteddimsview
3333
end
34+
if isdefined(ColorTypes, :XRGB) && isdefined(ColorTypes, :RGB1)
35+
Base.@deprecate_binding RGB1 XRGB
36+
Base.@deprecate_binding RGB4 RGBX
37+
end
3438

35-
using FileIO
39+
using ColorVectorSpace, FileIO
3640
export load, save
3741
import .Colors: Fractional
3842
import Graphics

0 commit comments

Comments
 (0)