Skip to content

Commit

Permalink
Merge pull request #21 from JuliaCloud/cv/compat
Browse files Browse the repository at this point in the history
Switch to using OrderedCollections
  • Loading branch information
omus authored Apr 7, 2020
2 parents 5fae68d + ee0ba49 commit b7539f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name = "XMLDict"
uuid = "228000da-037f-5747-90a9-8195ccbf91a5"
version = "0.4.0"
version = "0.4.1"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
EzXML = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615"
IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"

[compat]
DataStructures = "0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17"
EzXML = "0.7, 0.8, 0.9, 1.0"
IterTools = "1.0"
EzXML = "0.7, 0.8, 0.9, 1"
IterTools = "1"
JSON = "0.18, 0.19, 0.20, 0.21"
OrderedCollections = "0.1, 1"
julia = "1"

[extras]
Expand Down
2 changes: 1 addition & 1 deletion src/XMLDict.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export parse_xml, xml_dict


using EzXML
using DataStructures
using Base.Iterators
using IterTools
using OrderedCollections: OrderedDict


#-------------------------------------------------------------------------------
Expand Down

2 comments on commit b7539f5

@omus
Copy link
Member Author

@omus omus commented on b7539f5 Apr 7, 2020

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

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

Please sign in to comment.