Skip to content

Commit

Permalink
Use PropertyDicts.jl (#23)
Browse files Browse the repository at this point in the history
* Use PropertyDicts.jl

* Only using PropertyDict

* v0.2.2
  • Loading branch information
mattBrzezinski authored Sep 24, 2020
1 parent 234a33b commit 53c63f0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 67 deletions.
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
name = "LazyJSON"
uuid = "fc18253b-5e1b-504c-a4a2-9ece4944c004"
license = "MIT"
version = "0.2.1"
version = "0.2.2"

[deps]
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
PropertyDicts = "f8a19df8-e894-5f55-a973-672c1158cbca"

[compat]
JSON = "0.18, 0.19, 0.20, 0.21"
JSON2 = "0.1, 0.2, 0.3"
OrderedCollections = "1"
PropertyDicts = "0.1"
julia = "1"

[extras]
Expand Down
3 changes: 2 additions & 1 deletion src/LazyJSON.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module LazyJSON

using PropertyDicts: PropertyDict

module JSONjl
using JSON
end
Expand All @@ -16,7 +18,6 @@ macro lazywarn(a...)
end

include("SplicedStrings.jl") ; using .SplicedStrings: SplicedString
include("PropertyDicts.jl") ; using .PropertyDicts: PropertyDict
include("IOStrings.jl") ; using .IOStrings: IOString, pump


Expand Down
65 changes: 0 additions & 65 deletions src/PropertyDicts.jl

This file was deleted.

2 comments on commit 53c63f0

@mattBrzezinski
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/21941

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.2.2 -m "<description of version>" 53c63f0169b3c5441172a2d6bedd3735e1b9e04a
git push origin v0.2.2

Please sign in to comment.