Skip to content

Commit

Permalink
Add upgrade message for new version.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelovilla committed Feb 22, 2024
1 parent 529adc1 commit a1e5fd1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/_nebari/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,20 @@ def _version_specific_upgrade(
return config


class Upgrade_2024_2_1(UpgradeStep):
version = "2024.2.1"

def _version_specific_upgrade(
self, config, start_version, config_filename: Path, *args, **kwargs
):
rich.print("\n ⚠️ Warning ⚠️")
rich.print(
"-> Please run the [green]rm -rf stages[/green] so that we can regenerate an updated set of Terraform scripts for your deployment."
)

return config


__rounded_version__ = str(rounded_ver_parse(__version__))

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

0 comments on commit a1e5fd1

Please sign in to comment.