Skip to content

Commit

Permalink
Merge pull request #12 from tpapp/tp/parameters-unpack
Browse files Browse the repository at this point in the history
use UnPack instead of Parameters
  • Loading branch information
tpapp authored May 6, 2021
2 parents b75a53a + 6640fe7 commit 18a356e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ authors = ["Tamas K. Papp <tkpapp@gmail.com>"]
version = "0.3.1"

[deps]
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"

[compat]
StaticArrays = "0.9, 0.10, 1"
julia = "1"
StaticArrays = "^0.9, ^0.10"
UnPack = "1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
2 changes: 1 addition & 1 deletion src/StrFs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module StrFs
export StrF, @strf_str

using StaticArrays: SVector
using Parameters
using UnPack: @unpack

import Base: sizeof, read, write, isless, cmp, ==, typemin, repeat, promote_rule, show,
codeunit, hash, length
Expand Down

2 comments on commit 18a356e

@tpapp
Copy link
Owner Author

@tpapp tpapp commented on 18a356e May 6, 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/36180

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.3.1 -m "<description of version>" 18a356ef0c67d1047e67724fe0c0b9e7ec88b06a
git push origin v0.3.1

Please sign in to comment.