From b1a123f66a60d8bc7b61cfc834e5076a6c63710a Mon Sep 17 00:00:00 2001 From: Dylan Cole Date: Fri, 17 Feb 2023 01:50:10 -0500 Subject: [PATCH 1/3] Update api-keys.md fix typo --- website/content/terminal/guides/advanced/api-keys.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/terminal/guides/advanced/api-keys.md b/website/content/terminal/guides/advanced/api-keys.md index 8676aba6f3cd..226587b56be0 100644 --- a/website/content/terminal/guides/advanced/api-keys.md +++ b/website/content/terminal/guides/advanced/api-keys.md @@ -187,7 +187,7 @@ Click "Registration". This opens up the following screen: image -Once you have registered, you can find the API Key next to "API TOKEN". Enter this API key into the OpenBB Terminal by typing `/keys/cpanic KEY`. +Once you have registered, you can find the API Key next to "API TOKEN". Enter this API key into the OpenBB Terminal by typing `/keys/eodhd KEY`. image From f0bcdecd2aab1d42256d4808cdf28737257da4b4 Mon Sep 17 00:00:00 2001 From: james Date: Fri, 17 Feb 2023 10:18:39 -0500 Subject: [PATCH 2/3] Release branch --- build/docker/compose.env | 2 +- build/docker/docker-compose.yaml | 2 +- build/nsis/setup.nsi | 2 +- build/pyinstaller/.env | 2 +- openbb_terminal/feature_flags.py | 2 +- website/content/terminal/quickstart/installation.md | 6 +++--- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build/docker/compose.env b/build/docker/compose.env index 5e52b8720172..da45ac653a94 100644 --- a/build/docker/compose.env +++ b/build/docker/compose.env @@ -1,2 +1,2 @@ OPENBBTERMINAL_DOCKER_REGISTRY="ghcr.io" -OPENBBTERMINAL_DOCKER_RELEASE_VERSION="2.4.0" +OPENBBTERMINAL_DOCKER_RELEASE_VERSION="2.4.1" diff --git a/build/docker/docker-compose.yaml b/build/docker/docker-compose.yaml index 4dc7cb17f7d9..8bea75a11127 100644 --- a/build/docker/docker-compose.yaml +++ b/build/docker/docker-compose.yaml @@ -7,6 +7,6 @@ services: - ~/OpenBBUserData:/home/python/OpenBBUserData - ~/.openbb_terminal:/home/python/.openbb_terminal platform: linux/amd64 - image: ghcr.io/openbb-finance/openbbterminal/openbb:2.4.0 + image: ghcr.io/openbb-finance/openbbterminal/openbb:2.4.1 stdin_open: true # docker run -i tty: true # docker run -t diff --git a/build/nsis/setup.nsi b/build/nsis/setup.nsi index 20f489b56685..dcbe59d5d659 100644 --- a/build/nsis/setup.nsi +++ b/build/nsis/setup.nsi @@ -10,7 +10,7 @@ !define NAME "OpenBB Terminal" !define COMPANY "OpenBB" !define APPFILE "OpenBBTerminal.exe" - !define VERSION "2.4.0" + !define VERSION "2.4.1" !define SLUG "${NAME} v${VERSION}" ;-------------------------------- diff --git a/build/pyinstaller/.env b/build/pyinstaller/.env index a1981a858f49..b0d280930f35 100644 --- a/build/pyinstaller/.env +++ b/build/pyinstaller/.env @@ -1,5 +1,5 @@ OPENBB_LOGGING_APP_NAME=gst_packaged -OPENBB_LOGGING_COMMIT_HASH=sha:5705675 +OPENBB_LOGGING_COMMIT_HASH=sha:bbeaef4 OPENBB_ENABLE_PREDICT=false OPENBB_ENABLE_CHECK_API=true OPENBB_ENABLE_THOUGHTS_DAY=false diff --git a/openbb_terminal/feature_flags.py b/openbb_terminal/feature_flags.py index 66c51fc25f4e..63005cbce16f 100644 --- a/openbb_terminal/feature_flags.py +++ b/openbb_terminal/feature_flags.py @@ -149,7 +149,7 @@ else: raise Exception("Using git") except Exception: - version = "2.4.0" + version = "2.4.1" VERSION = str(os.getenv("OPENBB_VERSION", version)) # Select the terminal translation language diff --git a/website/content/terminal/quickstart/installation.md b/website/content/terminal/quickstart/installation.md index 86b041832bbb..86b5a0368f7e 100644 --- a/website/content/terminal/quickstart/installation.md +++ b/website/content/terminal/quickstart/installation.md @@ -37,7 +37,7 @@ OpenBB Terminal is available on all major platforms. With Windows and macOS you

Download the installer from the button below:

- +

Follow along with the instructions of the video or use the steps below to run the OpenBB Terminal:

@@ -73,12 +73,12 @@ For Mac there are two installers available, one for Intel and one for Apple Sili
If you are using Mac Intel: - +

If you are using Mac Apple Silicon (M1): - +
From 2e97d64f2fef429cd7f092a2e4000eac185e6727 Mon Sep 17 00:00:00 2001 From: james Date: Fri, 17 Feb 2023 10:25:18 -0500 Subject: [PATCH 3/3] pyproject --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1fceb7acdbcf..72c27bcb6c77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbb" -version = "2.4.0" +version = "2.4.1" description = "Investment Research for Everyone, Anywhere." license = "MIT" authors = ["Didier Rodrigues Lopes"]