Skip to content

Commit 98e8fc4

Browse files
chore: release v0.3.2
1 parent 00d8213 commit 98e8fc4

File tree

4 files changed

+39
-14
lines changed

4 files changed

+39
-14
lines changed

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[workspace.package]
1111
authors = ["avhz <[email protected]>"]
1212
description = "A Rust library for quantitative finance."
13-
version = "0.3.1"
13+
version = "0.4.0"
1414
edition = "2021"
1515
readme = "README.md"
1616
repository = "https://github.com/avhz/RustQuant"
@@ -65,19 +65,19 @@ rustdoc-args = ["--html-in-header", "katex.html", "--cfg", "docsrs"]
6565

6666
[workspace.dependencies]
6767
## RustQuant Crates
68-
RustQuant_autodiff = { version = "0.3.1", path = "crates/RustQuant_autodiff" }
69-
RustQuant_cashflows = { version = "0.3.1", path = "crates/RustQuant_cashflows" }
70-
RustQuant_data = { version = "0.3.1", path = "crates/RustQuant_data" }
71-
RustQuant_error = { version = "0.3.1", path = "crates/RustQuant_error" }
72-
RustQuant_instruments = { version = "0.3.1", path = "crates/RustQuant_instruments" }
73-
RustQuant_iso = { version = "0.3.1", path = "crates/RustQuant_iso" }
74-
RustQuant_math = { version = "0.3.1", path = "crates/RustQuant_math" }
75-
RustQuant_ml = { version = "0.3.1", path = "crates/RustQuant_ml" }
76-
RustQuant_portfolios = { version = "0.3.1", path = "crates/RustQuant_portfolios" }
77-
RustQuant_stochastics = { version = "0.3.1", path = "crates/RustQuant_stochastics" }
78-
RustQuant_time = { version = "0.3.1", path = "crates/RustQuant_time" }
79-
RustQuant_trading = { version = "0.3.1", path = "crates/RustQuant_trading" }
80-
RustQuant_utils = { version = "0.3.1", path = "crates/RustQuant_utils" }
68+
RustQuant_autodiff = { version = "0.4.0", path = "crates/RustQuant_autodiff" }
69+
RustQuant_cashflows = { version = "0.4.0", path = "crates/RustQuant_cashflows" }
70+
RustQuant_data = { version = "0.4.0", path = "crates/RustQuant_data" }
71+
RustQuant_error = { version = "0.4.0", path = "crates/RustQuant_error" }
72+
RustQuant_instruments = { version = "0.4.0", path = "crates/RustQuant_instruments" }
73+
RustQuant_iso = { version = "0.4.0", path = "crates/RustQuant_iso" }
74+
RustQuant_math = { version = "0.4.0", path = "crates/RustQuant_math" }
75+
RustQuant_ml = { version = "0.4.0", path = "crates/RustQuant_ml" }
76+
RustQuant_portfolios = { version = "0.4.0", path = "crates/RustQuant_portfolios" }
77+
RustQuant_stochastics = { version = "0.4.0", path = "crates/RustQuant_stochastics" }
78+
RustQuant_time = { version = "0.4.0", path = "crates/RustQuant_time" }
79+
RustQuant_trading = { version = "0.4.0", path = "crates/RustQuant_trading" }
80+
RustQuant_utils = { version = "0.4.0", path = "crates/RustQuant_utils" }
8181

8282
## External Crates
8383
argmin = "0.10.0" # https://docs.rs/argmin/latest/argmin/

crates/RustQuant_instruments/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.4.0](https://github.com/avhz/RustQuant/compare/RustQuant_instruments-v0.3.1...RustQuant_instruments-v0.4.0) - 2024-11-22
10+
11+
### Other
12+
13+
- clippy lints
14+
915
## [0.3.0](https://github.com/avhz/RustQuant/compare/RustQuant_instruments-v0.2.12...RustQuant_instruments-v0.3.0) - 2024-11-07
1016

1117
### Added

crates/RustQuant_iso/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.4.0](https://github.com/avhz/RustQuant/compare/RustQuant_iso-v0.3.1...RustQuant_iso-v0.4.0) - 2024-11-22
10+
11+
### Other
12+
13+
- fix ISO 10383 constants docs
14+
915
## [0.2.12](https://github.com/avhz/RustQuant/compare/RustQuant_iso-v0.2.11...RustQuant_iso-v0.2.12) - 2024-10-29
1016

1117
### Other

crates/RustQuant_time/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.4.0](https://github.com/avhz/RustQuant/compare/RustQuant_time-v0.3.1...RustQuant_time-v0.4.0) - 2024-11-22
10+
11+
### Other
12+
13+
- fix ISO 10383 constants docs
14+
- switch to matches macro
15+
- Removed chrono and added icu, updated independence/memorial/tisha-beav holiday rules
16+
- Added tests and fixed memorial day
17+
- Jewish holidays update check using heca_lib
18+
- Removed unused println plus formatting
19+
- Basic support for Israel (Jewish) Calander
20+
- Fix Singapore calendar docs (remove Hong-Kong reference)
21+
922
## [0.3.1](https://github.com/avhz/RustQuant/compare/RustQuant_time-v0.3.0...RustQuant_time-v0.3.1) - 2024-11-10
1023

1124
### Other

0 commit comments

Comments
 (0)