Skip to content

Commit 91efc2c

Browse files
committed
Simplify Monte Carlo simulator data structure for improved rendering performance.
1 parent d5b6f04 commit 91efc2c

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "optionstratlib"
3-
version = "0.17.2"
3+
version = "0.17.3"
44
edition = "2024"
55
authors = ["Joaquin Bejar <jb@taunais.com>"]
66
description = "OptionStratLib is a comprehensive Rust library for options trading and strategy development across multiple asset classes."

Draws/Simulation/simulator_test_montecarlo.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// into, so the lint is silenced in `#[cfg(test)]` only.
1111
#![cfg_attr(test, allow(clippy::indexing_slicing))]
1212

13-
//! # OptionStratLib v0.17.2: Financial Options Library
13+
//! # OptionStratLib v0.17.3: Financial Options Library
1414
//!
1515
//! ## Table of Contents
1616
//! 1. [Introduction](#introduction)
@@ -800,7 +800,7 @@
800800
//!
801801
//! ```toml
802802
//! [dependencies]
803-
//! optionstratlib = "0.17.2"
803+
//! optionstratlib = "0.17.3"
804804
//! ```
805805
//!
806806
//! Or use cargo to add it to your project:
@@ -815,7 +815,7 @@
815815
//!
816816
//! ```toml
817817
//! [dependencies]
818-
//! optionstratlib = { version = "0.17.2", features = ["plotly"] }
818+
//! optionstratlib = { version = "0.17.3", features = ["plotly"] }
819819
//! ```
820820
//!
821821
//! - `plotly`: Enables interactive visualization using plotly.rs
@@ -1206,7 +1206,7 @@
12061206
//!
12071207
//! ---
12081208
//!
1209-
//! **OptionStratLib v0.17.2** - Built with ❤️ in Rust for the financial community
1209+
//! **OptionStratLib v0.17.3** - Built with ❤️ in Rust for the financial community
12101210
//!
12111211
12121212
/// # OptionsStratLib: Financial Options Trading Library

0 commit comments

Comments
 (0)