Make Release

This commit is contained in:
James Maslek
2023-04-13 11:09:42 -04:00
parent 205c09e77e
commit 8dfc83659b
6 changed files with 7 additions and 6 deletions

2
CONTRIBUTING.md vendored
View File

@@ -1643,7 +1643,7 @@ system = get_current_system()
system = get_current_system()
print(system.VERSION)
# 3.0.0rc1
# 3.0.0
```

View File

@@ -1,2 +1,2 @@
OPENBBTERMINAL_DOCKER_REGISTRY="ghcr.io"
OPENBBTERMINAL_DOCKER_RELEASE_VERSION="3.0.0rc1"
OPENBBTERMINAL_DOCKER_RELEASE_VERSION="3.0.0rc2"

View File

@@ -10,7 +10,7 @@
!define NAME "OpenBB Terminal"
!define COMPANY "OpenBB"
!define APPFILE "OpenBBTerminal.exe"
!define VERSION "3.0.0rc1"
!define VERSION "3.0.0rc2"
!define SLUG "${NAME} v${VERSION}"
;--------------------------------

View File

@@ -1,5 +1,5 @@
OPENBB_LOGGING_APP_NAME=gst_packaged
OPENBB_LOGGING_COMMIT_HASH=sha:7972098
OPENBB_LOGGING_COMMIT_HASH=sha:1e619b8
OPENBB_ENABLE_PREDICT=false
OPENBB_ENABLE_CHECK_API=true
OPENBB_ENABLE_THOUGHTS_DAY=false
@@ -18,6 +18,7 @@ OPENBB_MPFSTYLE=dark
OPENBB_RICHSTYLE=dark
OPENBB_DEBUG_MODE=false
OPENBB_USE_TABULATE_DF=true
OPENBB_USE_INTERACTIVE_DF=true
OPENBB_USE_CLEAR_AFTER_CMD=false
OPENBB_USE_DATETIME=true
OPENBB_OPEN_REPORT_AS_HTML=true

View File

@@ -26,7 +26,7 @@ class SystemModel(BaseModel):
PYTHON_VERSION: str = str(platform.python_version())
# OpenBB section
VERSION = "3.0.0rc1"
VERSION = "3.0.0rc2"
# Logging section
LOGGING_APP_NAME: str = "gst"

2
pyproject.toml vendored
View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "openbb"
version = "3.0.0rc1"
version = "3.0.0rc2"
description = "Investment Research for Everyone, Anywhere."
license = "MIT"
authors = ["Didier Rodrigues Lopes"]