diff --git a/Project.toml b/Project.toml index ee3c6f5..3ffd73c 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ArgParse" uuid = "c7e460c6-2fb9-53a9-8c5b-16f535851c63" author = ["Carlo Baldassi "] -version = "1.1.5" +version = "1.2.0" [deps] Logging = "56ddb016-857b-54e1-b83d-db4d58db5568" diff --git a/README.md b/README.md index 5af8d52..14e22c8 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,11 @@ julia> using ArgParse - The manual is [HERE][docs-url]. - See also the examples in the [examples directory](examples). +## Changes in release 1.2.0 + +* Add options to control the help text formatting ([#132][PR132]) +* Allow defaults that can be converted into the target argument type ([#133][PR133]) + ## Changes in release 1.1.5 * Fix ambiguity with julia 1.11 new `wrap` function (see [#128][PR128]) @@ -144,3 +149,8 @@ which may break existing code: [PR28]: https://github.com/carlobaldassi/ArgParse.jl/pull/28 [PR33]: https://github.com/carlobaldassi/ArgParse.jl/pull/33 [PR104]: https://github.com/carlobaldassi/ArgParse.jl/pull/104 +[PR106]: https://github.com/carlobaldassi/ArgParse.jl/pull/106 +[PR107]: https://github.com/carlobaldassi/ArgParse.jl/pull/107 +[PR128]: https://github.com/carlobaldassi/ArgParse.jl/pull/128 +[PR132]: https://github.com/carlobaldassi/ArgParse.jl/pull/132 +[PR133]: https://github.com/carlobaldassi/ArgParse.jl/pull/133