Skip to content

Commit

Permalink
Merge pull request #30 from jaakkor2/imageio
Browse files Browse the repository at this point in the history
Load images with ImageIO.jl instead of Images.jl, to reduce precompilation time
  • Loading branch information
matthijscox-asml authored Jun 19, 2023
2 parents 68c70f3 + 2ddab5e commit 112f967
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name = "PPTX"
uuid = "14a86994-10a4-4a7d-b9ad-ef6f3b1fac6a"
authors = ["Xander de Vries", "Matthijs Cox"]
version = "0.5.3"
version = "0.6.0"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
DefaultApplication = "3f0dd361-4fe0-5fc6-8523-80b14ec94d85"
EzXML = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
Images = "916415d5-f1e6-5110-898d-aaa5f9f070e0"
ImageIO = "82e4d734-157c-48bb-816b-45c225c6df19"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
XMLDict = "228000da-037f-5747-90a9-8195ccbf91a5"
Expand All @@ -18,7 +18,7 @@ DataStructures = "0.18"
DefaultApplication = "1"
EzXML = "1"
FileIO = "1"
Images = "0.25"
ImageIO = "0.6.1"
Tables = "1"
XMLDict = "0.4"
julia = "1.6"
Expand Down
2 changes: 1 addition & 1 deletion src/Picture.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Images
using FileIO, ImageIO

"""
```julia
Expand Down

2 comments on commit 112f967

@matthijscox-asml
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 register

Release notes:

Switched to ImageIO.jl instead of Images.jl to reduce precompilation time.

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

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.6.0 -m "<description of version>" 112f9678f691bc8ff9c9b9f2aeaa9288760d8450
git push origin v0.6.0

Please sign in to comment.