Skip to content

Commit

Permalink
Merge pull request #290 from avhz/release-plz-2024-11-19T19-49-18Z
Browse files Browse the repository at this point in the history
chore: release v0.4.0
  • Loading branch information
avhz authored Nov 23, 2024
2 parents 00d8213 + 98e8fc4 commit 9fec79f
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[workspace.package]
authors = ["avhz <[email protected]>"]
description = "A Rust library for quantitative finance."
version = "0.3.1"
version = "0.4.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/avhz/RustQuant"
Expand Down Expand Up @@ -65,19 +65,19 @@ rustdoc-args = ["--html-in-header", "katex.html", "--cfg", "docsrs"]

[workspace.dependencies]
## RustQuant Crates
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" }
RustQuant_autodiff = { version = "0.4.0", path = "crates/RustQuant_autodiff" }
RustQuant_cashflows = { version = "0.4.0", path = "crates/RustQuant_cashflows" }
RustQuant_data = { version = "0.4.0", path = "crates/RustQuant_data" }
RustQuant_error = { version = "0.4.0", path = "crates/RustQuant_error" }
RustQuant_instruments = { version = "0.4.0", path = "crates/RustQuant_instruments" }
RustQuant_iso = { version = "0.4.0", path = "crates/RustQuant_iso" }
RustQuant_math = { version = "0.4.0", path = "crates/RustQuant_math" }
RustQuant_ml = { version = "0.4.0", path = "crates/RustQuant_ml" }
RustQuant_portfolios = { version = "0.4.0", path = "crates/RustQuant_portfolios" }
RustQuant_stochastics = { version = "0.4.0", path = "crates/RustQuant_stochastics" }
RustQuant_time = { version = "0.4.0", path = "crates/RustQuant_time" }
RustQuant_trading = { version = "0.4.0", path = "crates/RustQuant_trading" }
RustQuant_utils = { version = "0.4.0", path = "crates/RustQuant_utils" }

## External Crates
argmin = "0.10.0" # https://docs.rs/argmin/latest/argmin/
Expand Down
6 changes: 6 additions & 0 deletions crates/RustQuant_instruments/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/avhz/RustQuant/compare/RustQuant_instruments-v0.3.1...RustQuant_instruments-v0.4.0) - 2024-11-22

### Other

- clippy lints

## [0.3.0](https://github.com/avhz/RustQuant/compare/RustQuant_instruments-v0.2.12...RustQuant_instruments-v0.3.0) - 2024-11-07

### Added
Expand Down
6 changes: 6 additions & 0 deletions crates/RustQuant_iso/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/avhz/RustQuant/compare/RustQuant_iso-v0.3.1...RustQuant_iso-v0.4.0) - 2024-11-22

### Other

- fix ISO 10383 constants docs

## [0.2.12](https://github.com/avhz/RustQuant/compare/RustQuant_iso-v0.2.11...RustQuant_iso-v0.2.12) - 2024-10-29

### Other
Expand Down
13 changes: 13 additions & 0 deletions crates/RustQuant_time/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/avhz/RustQuant/compare/RustQuant_time-v0.3.1...RustQuant_time-v0.4.0) - 2024-11-22

### Other

- fix ISO 10383 constants docs
- switch to matches macro
- Removed chrono and added icu, updated independence/memorial/tisha-beav holiday rules
- Added tests and fixed memorial day
- Jewish holidays update check using heca_lib
- Removed unused println plus formatting
- Basic support for Israel (Jewish) Calander
- Fix Singapore calendar docs (remove Hong-Kong reference)

## [0.3.1](https://github.com/avhz/RustQuant/compare/RustQuant_time-v0.3.0...RustQuant_time-v0.3.1) - 2024-11-10

### Other
Expand Down

0 comments on commit 9fec79f

Please sign in to comment.