summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Maslek <jmaslek11@gmail.com>2023-11-10 09:42:05 -0500
committerGitHub <noreply@github.com>2023-11-10 09:42:05 -0500
commitf2208f8d31fdab2a7b01eeaa6feb93829e140b85 (patch)
tree1a294df6d05d9e61b5055a78cf628a9db49e03ef
parentacf8b0668977b2fd783d55ab787f04cec029be8d (diff)
Release/3.2.4 (#5704)
* 3.2.3->3.2.4 * Changelogs * new changelog
-rw-r--r--build/docker/compose.env2
-rw-r--r--build/nsis/setup.nsi8
-rw-r--r--build/pyinstaller/version.rc8
-rw-r--r--openbb_terminal/core/models/system_model.py2
-rw-r--r--pyproject.toml2
-rw-r--r--website/content/terminal/changelog/version2_0_0.mdx2
-rw-r--r--website/content/terminal/changelog/version2_1_0.mdx2
-rw-r--r--website/content/terminal/changelog/version2_2_0.mdx2
-rw-r--r--website/content/terminal/changelog/version2_3_0.mdx2
-rw-r--r--website/content/terminal/changelog/version2_3_1.mdx2
-rw-r--r--website/content/terminal/changelog/version2_4_0.mdx2
-rw-r--r--website/content/terminal/changelog/version2_4_1.mdx2
-rw-r--r--website/content/terminal/changelog/version2_5_0.mdx2
-rw-r--r--website/content/terminal/changelog/version2_5_1.mdx2
-rw-r--r--website/content/terminal/changelog/version3_0_0.mdx2
-rw-r--r--website/content/terminal/changelog/version3_0_1.mdx2
-rw-r--r--website/content/terminal/changelog/version3_1_0.mdx2
-rw-r--r--website/content/terminal/changelog/version3_2_0.mdx2
-rw-r--r--website/content/terminal/changelog/version3_2_1.mdx2
-rw-r--r--website/content/terminal/changelog/version3_2_2.mdx47
-rw-r--r--website/content/terminal/changelog/version3_2_3.mdx39
-rw-r--r--website/content/terminal/changelog/version3_2_4.mdx55
-rw-r--r--website/content/terminal/installation/macos.md2
-rw-r--r--website/content/terminal/installation/windows.md2
24 files changed, 168 insertions, 27 deletions
diff --git a/build/docker/compose.env b/build/docker/compose.env
index ac906835435..683cafaf6c2 100644
--- a/build/docker/compose.env
+++ b/build/docker/compose.env
@@ -1,2 +1,2 @@
OPENBBTERMINAL_DOCKER_REGISTRY="ghcr.io"
-OPENBBTERMINAL_DOCKER_RELEASE_VERSION="3.2.3"
+OPENBBTERMINAL_DOCKER_RELEASE_VERSION="3.2.4"
diff --git a/build/nsis/setup.nsi b/build/nsis/setup.nsi
index 0c7709f690b..a9948736ae5 100644
--- a/build/nsis/setup.nsi
+++ b/build/nsis/setup.nsi
@@ -10,18 +10,18 @@
!define NAME "OpenBB Terminal"
!define COMPANY "OpenBB"
!define APPFILE "OpenBBTerminal.exe"
- !define VERSION "3.2.3"
+ !define VERSION "3.2.4"
!define SLUG "${NAME} v${VERSION}"
;--------------------------------
; Info for Installer.exe
- VIProductVersion 3.2.3.0
+ VIProductVersion 3.2.4.0
VIAddVersionKey ProductName "OpenBB Terminal"
VIAddVersionKey Comments "An installer for OpenBB Terminal. For additional details, visit OpenBB.co"
VIAddVersionKey CompanyName OpenBB.co
VIAddVersionKey FileDescription "OpenBB Terminal Program"
- VIAddVersionKey FileVersion 3.2.3.0
- VIAddVersionKey ProductVersion 3.2.3.0
+ VIAddVersionKey FileVersion 3.2.4.0
+ VIAddVersionKey ProductVersion 3.2.4.0
VIAddVersionKey InternalName "OpenBB Terminal"
;--------------------------------
diff --git a/build/pyinstaller/version.rc b/build/pyinstaller/version.rc
index 83abf69e0d8..63b485dbd88 100644
--- a/build/pyinstaller/version.rc
+++ b/build/pyinstaller/version.rc
@@ -6,8 +6,8 @@ VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0.
- filevers=(3, 2, 3, 0),
- prodvers=(3, 2, 3, 0),
+ filevers=(3, 2, 4, 0),
+ prodvers=(3, 2, 4, 0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x0,
# Contains a bitmask that specifies the Boolean attributes of the file.
@@ -32,10 +32,10 @@ VSVersionInfo(
[StringStruct('Comments', 'The OpenBB Terminal. For additional details, visit OpenBB.co'),
StringStruct('CompanyName', 'OpenBB'),
StringStruct('FileDescription', 'OpenBB Terminal Program'),
- StringStruct('FileVersion', '3.2.3.0'),
+ StringStruct('FileVersion', '3.2.4.0'),
StringStruct('InternalName', 'OpenBB Terminal'),
StringStruct('ProductName', 'OpenBB Terminal'),
- StringStruct('ProductVersion', '3.2.3.0')])
+ StringStruct('ProductVersion', '3.2.4.0')])
]),
VarFileInfo([VarStruct('Translation', [1033, 1200])])
]
diff --git a/openbb_terminal/core/models/system_model.py b/openbb_terminal/core/models/system_model.py
index d76e535684a..10db4d0c811 100644
--- a/openbb_terminal/core/models/system_model.py
+++ b/openbb_terminal/core/models/system_model.py
@@ -28,7 +28,7 @@ class SystemModel(BaseModel):
PLATFORM: str = str(platform.platform())
# OpenBB section
- VERSION: str = "3.2.3"
+ VERSION: str = "3.2.4"
# Logging section
LOGGING_APP_ID: str = "REPLACE_ME"
diff --git a/pyproject.toml b/pyproject.toml
index 0eb6434e600..453fe4c4ce9 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "openbb"
-version = "3.2.3"
+version = "3.2.4"
description = "Investment Research for Everyone, Anywhere."
license = "MIT"
authors = ["Didier Rodrigues Lopes"]
diff --git a/website/content/terminal/changelog/version2_0_0.mdx b/website/content/terminal/changelog/version2_0_0.mdx
index 0841d51f334..b342f5e928d 100644
--- a/website/content/terminal/changelog/version2_0_0.mdx
+++ b/website/content/terminal/changelog/version2_0_0.mdx
@@ -3,7 +3,7 @@ title: v2.0.0
version: "2.0.0"
date: 2022-11-29
description: v2.0.0
-sidebar_position: 105
+sidebar_position: 108
---
## Major Release Notes
diff --git a/website/content/terminal/changelog/version2_1_0.mdx b/website/content/terminal/changelog/version2_1_0.mdx
index 321425a6955..d347c2fd5c7 100644
--- a/website/content/terminal/changelog/version2_1_0.mdx
+++ b/website/content/terminal/changelog/version2_1_0.mdx
@@ -3,7 +3,7 @@ title: v2.1.0
version: "2.1.0"
date: 2022-12-21
description: v2.1.0
-sidebar_position: 104
+sidebar_position: 107
---
## What's new
diff --git a/website/content/terminal/changelog/version2_2_0.mdx b/website/content/terminal/changelog/version2_2_0.mdx
index 51bc24934de..3c437fc0332 100644
--- a/website/content/terminal/changelog/version2_2_0.mdx
+++ b/website/content/terminal/changelog/version2_2_0.mdx
@@ -3,7 +3,7 @@ title: v2.2.0
version: "2.2.0"
date: 2022-01-19
description: v2.2.0
-sidebar_position: 103
+sidebar_position: 106
---
## What's new
diff --git a/website/content/terminal/changelog/version2_3_0.mdx b/website/content/terminal/changelog/version2_3_0.mdx
index c6b65de6aa3..7afd9c8508e 100644
--- a/website/content/terminal/changelog/version2_3_0.mdx
+++ b/website/content/terminal/changelog/version2_3_0.mdx
@@ -3,7 +3,7 @@ title: v2.3.0
version: "2.3.0"
date: 2023-01-31
description: v2.3.0
-sidebar_position: 102
+sidebar_position: 105
---
diff --git a/website/content/terminal/changelog/version2_3_1.mdx b/website/content/terminal/changelog/version2_3_1.mdx
index 7f811c4a3fc..59f0ada1a77 100644
--- a/website/content/terminal/changelog/version2_3_1.mdx
+++ b/website/content/terminal/changelog/version2_3_1.mdx
@@ -3,7 +3,7 @@ title: v2.3.1
version: "2.3.1"
date: 2023-02-01
description: v2.3.1
-sidebar_position: 101
+sidebar_position: 104
---
## Fixed
diff --git a/website/content/terminal/changelog/version2_4_0.mdx b/website/content/terminal/changelog/version2_4_0.mdx
index 2296a060a3b..29af7e51553 100644
--- a/website/content/terminal/changelog/version2_4_0.mdx
+++ b/website/content/terminal/changelog/version2_4_0.mdx
@@ -3,7 +3,7 @@ title: v2.4.0
version: "2.4.0"
date: 2023-02-14
description: v2.4.0
-sidebar_position: 100
+sidebar_position: 103
---
## What's new
diff --git a/website/content/terminal/changelog/version2_4_1.mdx b/website/content/terminal/changelog/version2_4_1.mdx
index dfa0696ac39..a9889a668fc 100644
--- a/website/content/terminal/changelog/version2_4_1.mdx
+++ b/website/content/terminal/changelog/version2_4_1.mdx
@@ -3,7 +3,7 @@ title: v2.4.1
version: "2.4.1"
date: 2023-02-17
description: v2.4.1
-sidebar_position: 99
+sidebar_position: 102
---
## What's new
diff --git a/website/content/terminal/changelog/version2_5_0.mdx b/website/content/terminal/changelog/version2_5_0.mdx
index adf11b02a15..674317079e0 100644
--- a/website/content/terminal/changelog/version2_5_0.mdx
+++ b/website/content/terminal/changelog/version2_5_0.mdx
@@ -3,7 +3,7 @@ title: v2.5.0
version: "2.5.0"
date: 2023-03-01
description: v2.5.0
-sidebar_position: 98
+sidebar_position: 101
---
diff --git a/website/content/terminal/changelog/version2_5_1.mdx b/website/content/terminal/changelog/version2_5_1.mdx
index 50a63e6c7b5..04b11a5f0e8 100644
--- a/website/content/terminal/changelog/version2_5_1.mdx
+++ b/website/content/terminal/changelog/version2_5_1.mdx
@@ -3,7 +3,7 @@ title: v2.5.1
version: "2.5.1"
date: 2023-03-01
description: Current - v2.5.1
-sidebar_position: 97
+sidebar_position: 100
---
## Fixed
diff --git a/website/content/terminal/changelog/version3_0_0.mdx b/website/content/terminal/changelog/version3_0_0.mdx
index a9bdddeafaf..061b8cdc11f 100644
--- a/website/content/terminal/changelog/version3_0_0.mdx
+++ b/website/content/terminal/changelog/version3_0_0.mdx
@@ -3,7 +3,7 @@ title: v3.0.0
version: "3.0.0"
date: 2023-04-25
description: v3.0.0
-sidebar_position: 96
+sidebar_position: 99
---
## What's new
diff --git a/website/content/terminal/changelog/version3_0_1.mdx b/website/content/terminal/changelog/version3_0_1.mdx
index c800ffe2d9f..2bdbc58ad88 100644
--- a/website/content/terminal/changelog/version3_0_1.mdx
+++ b/website/content/terminal/changelog/version3_0_1.mdx
@@ -3,7 +3,7 @@ title: v3.0.1
version: "3.0.1"
date: 2023-05-15
description: v3.0.1
-sidebar_position: 95
+sidebar_position: 98
---
## Thank you and welcome to our new contributors 🔥
diff --git a/website/content/terminal/changelog/version3_1_0.mdx b/website/content/terminal/changelog/version3_1_0.mdx
index 8c7583c9495..a3560787864 100644
--- a/website/content/terminal/changelog/version3_1_0.mdx
+++ b/website/content/terminal/changelog/version3_1_0.mdx
@@ -3,7 +3,7 @@ title: v3.1.0
version: "3.1.0"
date: 2023-06-21
description: v3.1.0
-sidebar_position: 94
+sidebar_position: 97
---
## Thank you and welcome to our new contributors 🔥
diff --git a/website/content/terminal/changelog/version3_2_0.mdx b/website/content/terminal/changelog/version3_2_0.mdx
index 17acdec8042..ddc4a873bd8 100644
--- a/website/content/terminal/changelog/version3_2_0.mdx
+++ b/website/content/terminal/changelog/version3_2_0.mdx
@@ -3,7 +3,7 @@ title: v3.2.0
version: "3.2.0"
date: 2023-07-21
description: Current - v3.2.0
-sidebar_position: 93
+sidebar_position: 96
---
## Thank you and welcome to our new contributors 🔥
diff --git a/website/content/terminal/changelog/version3_2_1.mdx b/website/content/terminal/changelog/version3_2_1.mdx
index 8b607555b9b..f8586b01bd4 100644
--- a/website/content/terminal/changelog/version3_2_1.mdx
+++ b/website/content/terminal/changelog/version3_2_1.mdx
@@ -3,7 +3,7 @@ title: v3.2.1
version: "3.2.1"
date: 2023-08-16
description: v3.2.1
-sidebar_position: 94
+sidebar_position: 95
---
## What's new 🎉
diff --git a/website/content/terminal/changelog/version3_2_2.mdx b/website/content/terminal/changelog/version3_2_2.mdx
new file mode 100644
index 00000000000..d2584b7b6ea
--- /dev/null
+++ b/website/content/terminal/changelog/version3_2_2.mdx
@@ -0,0 +1,47 @@
+---
+title: v3.2.2
+version: "3.2.2"
+date: 2023-08-30
+description: v3.2.2
+sidebar_position: 94
+---
+
+## Thank you and welcome to our new contributors 🔥
+@Define101 and @kulbinderdio
+
+## What's new 🎉
+
+We are excited to launch an implementation of TimeGPT from nixtla!
+
+As per usual, we are also including some general bug fixes, enhancements and documentations. We have also deprecated some crypto functions that have not been returning data from their API.
+
+## What's changed 🚀
+* update defillama_dapps json file (#5380) @Define101
+* Allow to execute reports url from reports menu (#5385) @DidierRLopes
+* Feature/companies house (#4721) @kulbinderdio
+* Hotfix - PyWry fix python 3.11 fail on boot, copy+paste on MacOS (#5384) @tehcoderer
+* Change bootup message (#5378) @jmaslek
+* Add example notebook for building volume-at-price chart. (#5370) @deeleeramone
+* Fix foreach on routine where the inputs provided are not valid (#5373) @DidierRLopes
+* 1st integration with TimeGPT-1 (Beta), from Nixtla (#5292) @DidierRLopes
+* Removed prints (#5367) @colin99d
+* Some error handling (#5357) @colin99d
+* Improves the `settings/userdata` command, and upgrade ruff (#5359) @colin99d
+* bye bye shroom (#5351) @colin99d
+* hotfix / Allow routine args inside lists (#5353) @tehcoderer
+* Fix the CPI CSV and remove twitter functionalities (#5350) @jmaslek
+* Thegraph totally changed, I removed the endpoints (#5349) @colin99d
+* Adds example notebook for installing in Google Colab (#5333) @deeleeramone
+* Improve documentation (#5345) @colin99d
+* Fixes #5332 (#5344) @colin99d
+* hotfix/fix-stocks-search-sdk3: Fixes the stocks search so that it doesn't `print_rich_table()` for SDK. (#5329) @deeleeramone
+* Fixed URL for uploading to the hub (#5340) @colin99d
+* Fixed the request function (#5336) @colin99d
+* Release/3.2.1 (#5335) @jmaslek
+
+We are proud of our community contributors and staunch supporters of open-source ecosystems.
+Help us promote our community by tagging `@openbb_finance` on Twitter with a link to your pull request,
+and join our Discord server to chat about your contribution! We want to hear about your experience!
+
+### Links 🦋
+[Website](https://openbb.co/), [Twitter](https://twitter.com/openbb_finance), [Linkedin](https://www.linkedin.com/company/openbb-finance), [Instagram](https://www.instagram.com/openbb.finance/), [Reddit](https://www.reddit.com/r/openbb/), [Discord](https://discord.com/invite/xPHTuHCmuV)
diff --git a/website/content/terminal/changelog/version3_2_3.mdx b/website/content/terminal/changelog/version3_2_3.mdx
new file mode 100644
index 00000000000..d8bc0dce172
--- /dev/null
+++ b/website/content/terminal/changelog/version3_2_3.mdx
@@ -0,0 +1,39 @@
+---
+title: v3.2.3
+version: "3.2.2"
+date: 2023-10-02
+description: v3.2.3
+sidebar_position: 93
+---
+Thank you for your patience! We have been working hard on the release of the openbb platform, which will be v4. You can check out the progress on our open PRs or the open branches.
+
+## Thank you and welcome to our new contributors 🔥
+@Light-JH, @MarkBenjamin and @ferreiratiago
+
+## What's new 🎉
+- We have fixed some issues related to the pip installation, which required pinning certain libraries.
+- General bug fixes
+
+
+## What's changed 🚀
+* hotfix/fix-pylint-errors: Fixes a couple of pylint errors (#5506) @deeleeramone
+* Update finvizfinance (#5500) @jmaslek
+* hotfix/forecast-make-intraday-work: An attempt to make intraday data work with forecast functions (#5486) @deeleeramone
+* Pin financedatabase (#5495) @jmaslek
+* Fix bug that doesn't allow to iterate through tickers with a dot (#5489) @DidierRLopes
+* refactor: reviewpad configuration (#5493) @ferreiratiago
+* hotfix/delete-options-screener-intro: Removes deprecated function from Intros documentation. (#5474) @deeleeramone
+* Hotfix stock screener (#5440) @jmaslek
+* Print message if yahoo finance load fails (#5450) @Light-JH
+* Hotfix/pywry 0.6.1 (#5446) @tehcoderer
+* Hotfix/weird logs (#5439) @hjoaquim
+* Improve readme header (#5432) @DidierRLopes
+* Release/3.2.2 (#5391) @jmaslek
+* Feature/sdk usage basics webpage tidy (#5388) @MarkBenjamin
+
+We are proud of our community contributors and staunch supporters of open-source ecosystems.
+Help us promote our community by tagging `@openbb_finance` on Twitter with a link to your pull request,
+and join our Discord server to chat about your contribution! We want to hear about your experience!
+
+### Links 🦋
+[Website](https://openbb.co/), [Twitter](https://twitter.com/openbb_finance), [Linkedin](https://www.linkedin.com/company/openbb-finance), [Instagram](https://www.instagram.com/openbb.finance/), [Reddit](https://www.reddit.com/r/openbb/), [Discord](https://discord.com/invite/xPHTuHCmuV)
diff --git a/website/content/terminal/changelog/version3_2_4.mdx b/website/content/terminal/changelog/version3_2_4.mdx
new file mode 100644
index 00000000000..c8decf82269
--- /dev/null
+++ b/website/content/terminal/changelog/version3_2_4.mdx
@@ -0,0 +1,55 @@
+---
+title: Current - v3.2.4
+version: "3.2.4"
+date: 2023-11-09
+description: Current - v3.2.4
+sidebar_position: 92
+---
+
+## Thank you and welcome to our new contributors 🔥
+@AdiSai, @AdwaitSalankar, @FarukhS52, @abhishek-amar, @bimbolimbo, @fadilparves, @joshuabuildsthings, @maxxsh, @polooner, @professssor, @ramazanguvenc and @ssahaxd
+
+## What's new 🎉
+We have been pushing away at the OpenBB Platform for our V4 release. This 3.2 patch comes with some terminal bug fixes and a dependency pin for pip installation/
+
+
+## What's changed 🚀
+* improved market cap value extraction (#5169) @bimbolimbo
+* Clarified stocks/ta empty recom object message (#5468) @polooner
+* Pin openai (#5685) @jmaslek
+* hotfix/stock-screener-sort: Fix for #5671 - sort by `fwdp/e` in Stock Screener (#5675) @deeleeramone
+* hotfix/fix-gov-histcont: Fix #5650 - /stocks/gov/histcont (#5676) @deeleeramone
+* Hotfix/reports model render report sanitize inputs (#5669) @joshuabuildsthings
+* #5633 adding comma every 1000 (#5652) @ramazanguvenc
+* improve docs structure for V4 (#5586) @DidierRLopes
+* fix front matter (#5667) @DidierRLopes
+* Update settings.md (#5665) @DidierRLopes
+* Improve Pro documentation further (#5641) @DidierRLopes
+* Fix the redirect for intro to the correct url for docs (#5658) @fadilparves
+* fix docs (#5646) @andrewkenreich
+* Add light blue banner, blue when clicking sidebar + fix link in docusaurus.config.js (#5627) @DidierRLopes
+* Docs/terminalpro and improvement (#5622) @DidierRLopes
+* Patch 1 (#5604) @maxxsh
+* Fix typo errors in CONTRIBUTING.md (#5623) @FarukhS52
+* Change Ultima paragraph (#5624) @hjoaquim
+* FIX #5600 Updated the Twitter logo to X logo (#5601) @professssor
+* Hotfix/econometrics export filename fix (#5508) @ssahaxd
+* Update README.md with new demo (#5598) @DidierRLopes
+* fix: A value is trying to be set on a copy of a slice from a DataFrame (#5591) @abhishek-amar
+* Updating Ultima urls (#5587) @hjoaquim
+* Add columns to `stocks/search` (#5565) @AdwaitSalankar
+* added platform API integration test to Nightly build (#5571) @luqmanbello
+* fix: Modify 'load' behavior to append data to existing sheet (#5503) @ssahaxd
+* Hotfix/ultima improvements (#5553) @AdiSai
+* add new bot command autopost docs (#5530) @andrewkenreich
+* Updating showcase page (#5543) @hjoaquim
+* Ultima Insights description update (#5541) @hjoaquim
+* Add the v4 tests to default branch (#5536) @jmaslek
+* Release/3.2.3 (#5529) @jmaslek
+
+We are proud of our community contributors and staunch supporters of open-source ecosystems.
+Help us promote our community by tagging `@openbb_finance` on Twitter with a link to your pull request,
+and join our Discord server to chat about your contribution! We want to hear about your experience!
+
+### Links 🦋
+[Website](https://openbb.co/), [Twitter](https://twitter.com/openbb_finance), [Linkedin](https://www.linkedin.com/company/openbb-finance), [Instagram](https://www.instagram.com/openbb.finance/), [Reddit](https://www.reddit.com/r/openbb/), [Discord](https://discord.com/invite/xPHTuHCmuV)
diff --git a/website/content/terminal/installation/macos.md b/website/content/terminal/installation/macos.md
index 7a53370a472..1d4cc358be0 100644
--- a/website/content/terminal/installation/macos.md
+++ b/website/content/terminal/installation/macos.md
@@ -30,7 +30,7 @@ Install the OpenBB Terminal on MacOS (Big Sur or later). There are two versions
<div style={{
height: 80
}}>
-<InstallerButton href="https://github.com/OpenBB-finance/OpenBBTerminal/releases/download/v3.2.3/x86.64.MacOS.OpenBB.Terminal.v3.2.3.pkg" label="Mac Intel Installer" /> <InstallerButton href="https://github.com/OpenBB-finance/OpenBBTerminal/releases/download/v3.2.3/ARM64.MacOS.OpenBB.Terminal.v3.2.3.pkg" label="Mac M1 Installer" />
+<InstallerButton href="https://github.com/OpenBB-finance/OpenBBTerminal/releases/download/v3.2.4/x86.64.MacOS.OpenBB.Terminal.v3.2.4.pkg" label="Mac Intel Installer" /> <InstallerButton href="https://github.com/OpenBB-finance/OpenBBTerminal/releases/download/v3.2.4/ARM64.MacOS.OpenBB.Terminal.v3.2.4.pkg" label="Mac M1 Installer" />
</div>
<details><summary>Minimum Requirements</summary>
diff --git a/website/content/terminal/installation/windows.md b/website/content/terminal/installation/windows.md
index 8c0f5ba9fe1..95778b3edbb 100644
--- a/website/content/terminal/installation/windows.md
+++ b/website/content/terminal/installation/windows.md
@@ -20,7 +20,7 @@ import InstallerButton from "@site/src/components/General/InstallerButton";
This section provides you with the installation file as well as the guide to install the OpenBB Terminal via Windows (10 or greater).
-<InstallerButton type="windows" href="https://github.com/OpenBB-finance/OpenBBTerminal/releases/download/v3.2.3/Windows.OpenBB.Terminal.v3.2.3.exe" label="Windows Installer" />
+<InstallerButton type="windows" href="https://github.com/OpenBB-finance/OpenBBTerminal/releases/download/v3.2.4/Windows.OpenBB.Terminal.v3.2.4.exe" label="Windows Installer" />
<details><summary>Minimum Requirements</summary>