Skip to content

Commit

Permalink
new version 1.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
karrmagadgeteer2 committed Nov 6, 2023
1 parent 9e7be68 commit 0e2f7cf
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
At some point we will start documenting changes in release documentation instead.
For now this is the only place where we log summary descriptions.

## Version [1.4.5] - 2023-11-06

- Cleaned up function for exponentially weighted moving average "EWMA" volatility
- Some dev dependency updates such as ruff and Poetry
- Major cleanup of simulation module. Removed Heston CIR & OU models as I have never checked them. Also rewrote Merton JDM from scratch to make it consisten with GBM model.
- Rewrite of simulation required update of many calculation result tests

## Version [1.4.4] - 2023-10-30

- Fixed two pct_change() methods missing fill_method.
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Without an x next to a version below you can assume that it works as intended.

| Version | Supported |
|---------|--------------------|
| 1.4.5 | :white_check_mark: |
| 1.4.4 | :white_check_mark: |
| 1.4.3 | :white_check_mark: |
| 1.4.2 | :white_check_mark: |
| 1.3.9 | :white_check_mark: |
| 1.3.8 | :white_check_mark: |
| < 1.3.8 | :x: |
| < 1.3.9 | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ elseif ($task -eq "make") {
pip install poetry==1.7.0
Remove-Item -Path 'poetry.lock' -Force -ErrorAction SilentlyContinue
poetry install --with dev
pre-commit install
poetry run pre-commit install
}
elseif ($task -eq "test") {
# run tests and report coverage
Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "openseries"
version = "1.4.4"
version = "1.4.5"
description = "Package for analyzing financial timeseries."
authors = ["Martin Karrin <martin.karrin@captor.se>"]
repository = "https://github.com/CaptorAB/OpenSeries"
Expand Down Expand Up @@ -34,7 +34,7 @@ keywords = [
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
ffn = "^0.3.7"
holidays = "^0.35"
holidays = "^0.36"
numpy = "^1.26.1"
openpyxl = "^3.1.2"
pandas = "^2.1.2"
Expand Down

0 comments on commit 0e2f7cf

Please sign in to comment.