Skip to content

Commit

Permalink
Use updated Parsers.jl stripquoted (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrobinson251 authored Apr 21, 2022
1 parent b611fa2 commit 981f60c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PowerFlowData"
uuid = "dd99e9e3-7471-40fc-b48d-a10501125371"
authors = "Nick Robinson <[email protected]> and contributors"
version = "1.3.0"
version = "1.3.1"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand All @@ -14,7 +14,7 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
DataFrames = "1"
DocStringExtensions = "0.8.5"
InlineStrings = "1.1.2"
Parsers = "2.2.1"
Parsers = "2.3"
PrettyTables = "1"
Tables = "1"
julia = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/parsing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const OPTIONS = Parsers.Options(
openquotechar='\'',
closequotechar='\'',
delim=',',
stripwhitespace=true,
stripquoted=true,
)

getbytes(source::Vector{UInt8}) = source, 1, length(source)
Expand Down

2 comments on commit 981f60c

@nickrobinson251
Copy link
Owner 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/58897

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 v1.3.1 -m "<description of version>" 981f60c972350f467848d068cff464a233112f51
git push origin v1.3.1

Please sign in to comment.