From a6e1133ac4f6c2c56ebdce518b9f5367f35e7dd9 Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Fri, 27 Jan 2017 22:38:33 +0100 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2b0942f..25aae880 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,14 @@ This allows zero-copy access to numpy arrays. - When building with `--feature nightly`, `extract::>` will try to use the buffer protocol before falling back to the sequence protocol. +- [Added support for optional parameters][81] to `py_argparse!`, `py_fn!` and `py_class!` macros. (PR by [@Luthaf]) + + Example: `py_fn!(py, function(i: i32 = 0))` + +[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.1.0...HEAD +[81]: https://github.com/dgrunwald/rust-cpython/pull/81 +[@Luthaf]: https://github.com/Luthaf ## 0.1.0 - 2016-12-17 - First release that works on stable Rust. -[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.1.0...HEAD