diff --git a/Cargo.toml b/Cargo.toml index d330dd4..e936221 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ [workspace.package] authors = ["avhz "] description = "A Rust library for quantitative finance." -version = "0.3.0" +version = "0.3.1" edition = "2021" readme = "README.md" repository = "https://github.com/avhz/RustQuant" @@ -65,19 +65,19 @@ rustdoc-args = ["--html-in-header", "katex.html", "--cfg", "docsrs"] [workspace.dependencies] ## RustQuant Crates -RustQuant_autodiff = { version = "0.3.0", path = "crates/RustQuant_autodiff" } -RustQuant_cashflows = { version = "0.3.0", path = "crates/RustQuant_cashflows" } -RustQuant_data = { version = "0.3.0", path = "crates/RustQuant_data" } -RustQuant_error = { version = "0.3.0", path = "crates/RustQuant_error" } -RustQuant_instruments = { version = "0.3.0", path = "crates/RustQuant_instruments" } -RustQuant_iso = { version = "0.3.0", path = "crates/RustQuant_iso" } -RustQuant_math = { version = "0.3.0", path = "crates/RustQuant_math" } -RustQuant_ml = { version = "0.3.0", path = "crates/RustQuant_ml" } -RustQuant_portfolios = { version = "0.3.0", path = "crates/RustQuant_portfolios" } -RustQuant_stochastics = { version = "0.3.0", path = "crates/RustQuant_stochastics" } -RustQuant_time = { version = "0.3.0", path = "crates/RustQuant_time" } -RustQuant_trading = { version = "0.3.0", path = "crates/RustQuant_trading" } -RustQuant_utils = { version = "0.3.0", path = "crates/RustQuant_utils" } +RustQuant_autodiff = { version = "0.3.1", path = "crates/RustQuant_autodiff" } +RustQuant_cashflows = { version = "0.3.1", path = "crates/RustQuant_cashflows" } +RustQuant_data = { version = "0.3.1", path = "crates/RustQuant_data" } +RustQuant_error = { version = "0.3.1", path = "crates/RustQuant_error" } +RustQuant_instruments = { version = "0.3.1", path = "crates/RustQuant_instruments" } +RustQuant_iso = { version = "0.3.1", path = "crates/RustQuant_iso" } +RustQuant_math = { version = "0.3.1", path = "crates/RustQuant_math" } +RustQuant_ml = { version = "0.3.1", path = "crates/RustQuant_ml" } +RustQuant_portfolios = { version = "0.3.1", path = "crates/RustQuant_portfolios" } +RustQuant_stochastics = { version = "0.3.1", path = "crates/RustQuant_stochastics" } +RustQuant_time = { version = "0.3.1", path = "crates/RustQuant_time" } +RustQuant_trading = { version = "0.3.1", path = "crates/RustQuant_trading" } +RustQuant_utils = { version = "0.3.1", path = "crates/RustQuant_utils" } ## External Crates argmin = "0.10.0" # https://docs.rs/argmin/latest/argmin/ diff --git a/crates/RustQuant_autodiff/CHANGELOG.md b/crates/RustQuant_autodiff/CHANGELOG.md index 43d3902..534ad22 100644 --- a/crates/RustQuant_autodiff/CHANGELOG.md +++ b/crates/RustQuant_autodiff/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/avhz/RustQuant/compare/RustQuant_autodiff-v0.3.0...RustQuant_autodiff-v0.3.1) - 2024-11-10 + +### Other + +- fix failing doc-tests (add RustQuant dev-dep) + ## [0.3.0](https://github.com/avhz/RustQuant/compare/RustQuant_autodiff-v0.2.12...RustQuant_autodiff-v0.3.0) - 2024-11-07 ### Other diff --git a/crates/RustQuant_cashflows/CHANGELOG.md b/crates/RustQuant_cashflows/CHANGELOG.md index 2b5fbb1..d6380f4 100644 --- a/crates/RustQuant_cashflows/CHANGELOG.md +++ b/crates/RustQuant_cashflows/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/avhz/RustQuant/compare/RustQuant_cashflows-v0.3.0...RustQuant_cashflows-v0.3.1) - 2024-11-10 + +### Other + +- fix failing doc-tests (add RustQuant dev-dep) + ## [0.2.12](https://github.com/avhz/RustQuant/compare/RustQuant_cashflows-v0.2.11...RustQuant_cashflows-v0.2.12) - 2024-10-29 ### Other diff --git a/crates/RustQuant_math/CHANGELOG.md b/crates/RustQuant_math/CHANGELOG.md index d467fc0..4323832 100644 --- a/crates/RustQuant_math/CHANGELOG.md +++ b/crates/RustQuant_math/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/avhz/RustQuant/compare/RustQuant_math-v0.3.0...RustQuant_math-v0.3.1) - 2024-11-10 + +### Other + +- fix failing doc-tests (add RustQuant dev-dep) + ## [0.3.0](https://github.com/avhz/RustQuant/compare/RustQuant_math-v0.2.12...RustQuant_math-v0.3.0) - 2024-11-07 ### Other diff --git a/crates/RustQuant_ml/CHANGELOG.md b/crates/RustQuant_ml/CHANGELOG.md index 5150b78..f7a81c1 100644 --- a/crates/RustQuant_ml/CHANGELOG.md +++ b/crates/RustQuant_ml/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/avhz/RustQuant/compare/RustQuant_ml-v0.3.0...RustQuant_ml-v0.3.1) - 2024-11-10 + +### Other + +- fix failing doc-tests (add RustQuant dev-dep) + ## [0.3.0](https://github.com/avhz/RustQuant/compare/RustQuant_ml-v0.2.12...RustQuant_ml-v0.3.0) - 2024-11-07 ### Other diff --git a/crates/RustQuant_stochastics/CHANGELOG.md b/crates/RustQuant_stochastics/CHANGELOG.md index b1f32f6..3fd6348 100644 --- a/crates/RustQuant_stochastics/CHANGELOG.md +++ b/crates/RustQuant_stochastics/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/avhz/RustQuant/compare/RustQuant_stochastics-v0.3.0...RustQuant_stochastics-v0.3.1) - 2024-11-10 + +### Other + +- fix failing doc-tests (add RustQuant dev-dep) + ## [0.3.0](https://github.com/avhz/RustQuant/compare/RustQuant_stochastics-v0.2.12...RustQuant_stochastics-v0.3.0) - 2024-11-07 ### Other diff --git a/crates/RustQuant_time/CHANGELOG.md b/crates/RustQuant_time/CHANGELOG.md index cded464..875c711 100644 --- a/crates/RustQuant_time/CHANGELOG.md +++ b/crates/RustQuant_time/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/avhz/RustQuant/compare/RustQuant_time-v0.3.0...RustQuant_time-v0.3.1) - 2024-11-10 + +### Other + +- fix failing doc-tests (add RustQuant dev-dep) + ## [0.3.0](https://github.com/avhz/RustQuant/compare/RustQuant_time-v0.2.12...RustQuant_time-v0.3.0) - 2024-11-07 ### Other