From ff67c1ecdf79c55399495fa2c71a93c2af37b23c Mon Sep 17 00:00:00 2001 From: Anexen Date: Sat, 2 Dec 2023 23:36:28 +0100 Subject: [PATCH] bump version to 0.10.0 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cb0f3a..ab76b2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.0] - 2023-12-03 + +- Private Equity functions ([#42](https://github.com/Anexen/pyxirr/issues/42)) +- XNPV/NPV functions now accept rate as multidimensional array +- Explain Multiple IRR problem + provide utility functions for analysis +- XIRR improvements (prevent from values < -1, grid search + brentq as fallback) + ## [0.9.3] - 2023-10-11 - IRR improvements ([#47](https://github.com/Anexen/pyxirr/pull/47)) diff --git a/Cargo.lock b/Cargo.lock index 521a97c..be609e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -366,7 +366,7 @@ dependencies = [ [[package]] name = "pyxirr" -version = "0.9.3" +version = "0.10.0" dependencies = [ "assert_approx_eq", "ndarray", diff --git a/Cargo.toml b/Cargo.toml index 85d51e5..176f9b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyxirr" -version = "0.9.3" +version = "0.10.0" authors = ["Anexen"] edition = "2021" description = "Rust-powered collection of financial functions for Python."