Skip to content

Commit a9a6bb1

Browse files
committed
bump version to 0.9.2
1 parent cd722bb commit a9a6bb1

File tree

3 files changed

+28
-24
lines changed

3 files changed

+28
-24
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [0.9.2] - 2023-06-14
4+
5+
- XNFV: suppress `InvalidPaymentsError` by passing `silent=True` flag ([#40](https://github.com/Anexen/pyxirr/issues/40))
6+
37
## [0.9.1] - 2023-06-03
48

59
- CUMPRINC, CUMIPMT functions
@@ -36,7 +40,7 @@
3640

3741
## [0.7.0] - 2021-12-02
3842

39-
- Add an ability to suppress InvalidPaymentsError by passing `silent=True` flag ([#22](https://github.com/Anexen/pyxirr/issues/22))
43+
- Add an ability to suppress `InvalidPaymentsError` by passing `silent=True` flag ([#22](https://github.com/Anexen/pyxirr/issues/22))
4044
- Release the GIL for rust-only code
4145
- Type hints
4246
- Refactor tests (use `PyCFunction` interface instead of calling functions directly)

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyxirr"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
authors = ["Anexen"]
55
edition = "2021"
66
description = "Rust-powered collection of financial functions for Python."
@@ -27,13 +27,13 @@ name = "pyxirr"
2727
crate-type = ["rlib", "cdylib"]
2828

2929
[dependencies]
30-
pyo3 = "0.18"
31-
numpy = "0.18"
30+
pyo3 = "0.19"
31+
numpy = "0.19"
3232
time = { version = "0.3", features = ["parsing", "macros"] }
3333
ndarray = "0.15"
3434

3535
[dev-dependencies]
36-
rstest = "0.16"
36+
rstest = "0.17"
3737

3838
[features]
3939
default = ["pyo3/extension-module"]

0 commit comments

Comments
 (0)