Skip to content

Commit

Permalink
bump version to 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Anexen committed Jun 14, 2023
1 parent cd722bb commit a9a6bb1
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 24 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.9.2] - 2023-06-14

- XNFV: suppress `InvalidPaymentsError` by passing `silent=True` flag ([#40](https://github.com/Anexen/pyxirr/issues/40))

## [0.9.1] - 2023-06-03

- CUMPRINC, CUMIPMT functions
Expand Down Expand Up @@ -36,7 +40,7 @@

## [0.7.0] - 2021-12-02

- Add an ability to suppress InvalidPaymentsError by passing `silent=True` flag ([#22](https://github.com/Anexen/pyxirr/issues/22))
- Add an ability to suppress `InvalidPaymentsError` by passing `silent=True` flag ([#22](https://github.com/Anexen/pyxirr/issues/22))
- Release the GIL for rust-only code
- Type hints
- Refactor tests (use `PyCFunction` interface instead of calling functions directly)
Expand Down
38 changes: 19 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyxirr"
version = "0.9.1"
version = "0.9.2"
authors = ["Anexen"]
edition = "2021"
description = "Rust-powered collection of financial functions for Python."
Expand All @@ -27,13 +27,13 @@ name = "pyxirr"
crate-type = ["rlib", "cdylib"]

[dependencies]
pyo3 = "0.18"
numpy = "0.18"
pyo3 = "0.19"
numpy = "0.19"
time = { version = "0.3", features = ["parsing", "macros"] }
ndarray = "0.15"

[dev-dependencies]
rstest = "0.16"
rstest = "0.17"

[features]
default = ["pyo3/extension-module"]
Expand Down

0 comments on commit a9a6bb1

Please sign in to comment.