Skip to content

Commit

Permalink
Bump version and register, README update
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro3 committed Sep 10, 2019
1 parent abf6152 commit bc97d17
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
5 changes: 4 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# 2019-09-10
Added support of packing immutables (by creating one) through `@pack_SomeType`.

# 2018-07-10

Added named tuple support.
Added named tuple support.

# 2017-09-26

Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Parameters"
uuid = "d96e819e-fc66-5662-9728-84c9c7592b0a"
author = ["Mauro Werder <[email protected]>"]
version = "0.11.0"
version = "0.12.0"

[deps]
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,15 @@ Documentation is here: [stable](https://mauro3.github.io/Parameters.jl/stable) a
# Related packages
Complementary:
- [EponymTuples.jl](https://github.com/tpapp/EponymTuples.jl) packing/unpacking
of named tuples.
- [NamedTupleTools.jl](https://github.com/JeffreySarnoff/NamedTupleTools.jl)
has many named-tuple helper functions
- [Setfield.jl](https://github.com/jw3126/Setfield.jl) for setting
immutable fields (i.e. similar to the here provided packing).
Implementing similar things:
- `Base.@kwdef` has functionality similar to `@with_kw` but more
limited. However, with Julia v1.1 its capabilities will be much
enhanced, see [#29316](https://github.com/JuliaLang/julia/pull/29316).
Expand Down

2 comments on commit bc97d17

@mauro3
Copy link
Owner Author

@mauro3 mauro3 commented on bc97d17 Sep 10, 2019

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/3425

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.12.0 -m "<description of version>" bc97d17ee9cdc931d7b139f321a7c7e155df6633
git push origin v0.12.0

Please sign in to comment.