Skip to content

Commit

Permalink
Export String[X] types from WeakRefStrings.jl (#889)
Browse files Browse the repository at this point in the history
* Export String[X] types from WeakRefStrings.jl

* Update Project.toml
  • Loading branch information
bkamins authored Sep 8, 2021
1 parent 7e73b91 commit ad2a972
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CSV"
uuid = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
authors = ["Jacob Quinn <[email protected]>"]
version = "0.9.0"
version = "0.9.1"

[deps]
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"
Expand All @@ -22,7 +22,7 @@ Parsers = "2"
PooledArrays = "0.5, 1.0"
SentinelArrays = "1.2"
Tables = "1.1"
WeakRefStrings = "1.2"
WeakRefStrings = "1.3"
julia = "1.3"

[extras]
Expand Down
1 change: 1 addition & 0 deletions src/CSV.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ using SentinelArrays
# WeakRefStrings provides the InlineString and PosLenString types for more gc-friendly string types
using WeakRefStrings
export PosLenString, InlineString
export String1, String3, String7, String15, String31, String63, String127, String255
# CodecZlib is used for unzipping gzip files
using CodecZlib
# FilePathsBase allows more structured file path types
Expand Down

2 comments on commit ad2a972

@quinnj
Copy link
Member

@quinnj quinnj commented on ad2a972 Sep 8, 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/44520

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.1 -m "<description of version>" ad2a9727aa30dfb67bc3fed7795c22378c9e5821
git push origin v0.9.1

Please sign in to comment.