Skip to content

Commit

Permalink
Prepare 2024.3.1rc1 release (#2275)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelovilla authored Mar 5, 2024
2 parents 292df05 + 02e63d5 commit 1e0c53e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/_nebari/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
DEFAULT_GKE_RELEASE_CHANNEL = "UNSPECIFIED"

DEFAULT_NEBARI_DASK_VERSION = CURRENT_RELEASE
DEFAULT_NEBARI_IMAGE_TAG = CURRENT_RELEASE
DEFAULT_NEBARI_WORKFLOW_CONTROLLER_IMAGE_TAG = "2024.1.1"
DEFAULT_NEBARI_IMAGE_TAG = "2024.2.1rc2"
DEFAULT_NEBARI_WORKFLOW_CONTROLLER_IMAGE_TAG = "2024.2.1rc2"

DEFAULT_CONDA_STORE_IMAGE_TAG = "2024.1.1"

Expand Down
11 changes: 11 additions & 0 deletions src/_nebari/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,17 @@ def _version_specific_upgrade(
return config


class Upgrade_2024_3_1(UpgradeStep):
version = "2024.3.1"

def _version_specific_upgrade(
self, config, start_version, config_filename: Path, *args, **kwargs
):
rich.print("Ready to upgrade to Nebari version [green]2024.3.1[/green].")

return config


__rounded_version__ = str(rounded_ver_parse(__version__))

# Manually-added upgrade steps must go above this line
Expand Down

0 comments on commit 1e0c53e

Please sign in to comment.