Skip to content

Commit

Permalink
Take dependency on InlineStrings package (#923)
Browse files Browse the repository at this point in the history
InlineStrings functionality was split out from WeakRefStrings package to
InlineStrings.jl.
  • Loading branch information
quinnj authored Oct 1, 2021
1 parent 0f97e66 commit 549b1ab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name = "CSV"
uuid = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
authors = ["Jacob Quinn <quinn.jacobd@gmail.com>"]
version = "0.9.4"
version = "0.9.5"

[deps]
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
FilePathsBase = "48062228-2e41-5def-b9a4-89aafe57970f"
InlineStrings = "842dd82b-1e85-43dc-bf29-5d0ee9dffc48"
Mmap = "a63ad114-7e13-5084-954f-fe012c677804"
Parsers = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
PooledArrays = "2dfb63ee-cc39-5dd5-95bd-886bf059d720"
Expand All @@ -17,12 +18,13 @@ WeakRefStrings = "ea10d353-3f73-51f8-a26c-33c1cb351aa5"

[compat]
CodecZlib = "0.7"
InlineStrings = "1"
FilePathsBase = "0.6,0.7,0.8,0.9"
Parsers = "2"
PooledArrays = "0.5, 1.0"
SentinelArrays = "1.2"
Tables = "1.1"
WeakRefStrings = "1.3"
WeakRefStrings = "1.4"
julia = "1.3"

[extras]
Expand Down
4 changes: 2 additions & 2 deletions src/CSV.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ using PooledArrays
# SentinelArrays.jl allow efficient conversion from Vector{Union{T, Missing}} to Vector{T}
# it also provides the MissingVector and ChainedVector array types
using SentinelArrays
# WeakRefStrings provides the InlineString and PosLenString types for more gc-friendly string types
using WeakRefStrings
# InlineStrings and WeakRefStrings provide the InlineString and PosLenString types for more gc-friendly string types
using InlineStrings, WeakRefStrings
export PosLenString, InlineString
export String1, String3, String7, String15, String31, String63, String127, String255
# CodecZlib is used for unzipping gzip files
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Test, CSV, Mmap, Dates, Tables, PooledArrays, CodecZlib, FilePathsBase, SentinelArrays, Parsers, WeakRefStrings
using Test, CSV, Mmap, Dates, Tables, PooledArrays, CodecZlib, FilePathsBase, SentinelArrays, Parsers, WeakRefStrings, InlineStrings

const dir = joinpath(dirname(pathof(CSV)), "..", "test", "testfiles")

Expand Down

2 comments on commit 549b1ab

@quinnj
Copy link
Member Author

@quinnj quinnj commented on 549b1ab Oct 1, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

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

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.9.5 -m "<description of version>" 549b1ab03155c8c96485406881addcc65ef914e8
git push origin v0.9.5

Please sign in to comment.