From fa29058ec1505bdd5f7d4e59ada1a779b2eba295 Mon Sep 17 00:00:00 2001 From: Micah Silverman Date: Tue, 17 Aug 2021 15:44:49 -0400 Subject: [PATCH 1/3] changed backend to do. version bump. --- setup.py | 2 +- splitcli/config/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0913386..1e09b2b 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='splitcli', - version='0.0.10', + version='0.1.0', description='Use Split.io from the command line', long_description=long_description, long_description_content_type='text/markdown', diff --git a/splitcli/config/__init__.py b/splitcli/config/__init__.py index 152c3d1..5110bee 100644 --- a/splitcli/config/__init__.py +++ b/splitcli/config/__init__.py @@ -3,7 +3,7 @@ from os.path import expanduser from splitcli.ux import text -SPLIT_CLI_BACKEND_URI = "https://split-cli-backend.herokuapp.com" +SPLIT_CLI_BACKEND_URI = "https://cli-backend.afitnerd.com" SPLIT_CLI_BACKEND_API_URI = "/api/v1" SPLIT_CLI_BACKEND_BASE_URL = f"{SPLIT_CLI_BACKEND_URI}{SPLIT_CLI_BACKEND_API_URI}" From 1a61ad4c7fadc0418f8768de658e6fbfa7a30898 Mon Sep 17 00:00:00 2001 From: Micah Silverman Date: Fri, 24 Sep 2021 13:37:15 -0400 Subject: [PATCH 2/3] updated for deprecation --- README.md | 6 ++++++ setup.py | 2 +- splitcli/__main__.py | 11 ++++++++++- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 35369d3..0640441 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # Welcome to the Split CLI 👋 +------------------- + +**NOTE**: 9/24/2021 - A few months ago Split Skunkworks (aka developer advocacy) embarked on an experiment to create a command line interface (CLI) tool to provision and interact with Split accounts. The experiment was a success and we are now assessing putting formal engineering muscle behind it. For now, we are taking it offline until such time as we are ready to release a fully supported version. + +-------------------- + The Split CLI is a Command Line Interface built to simplify onboarding, and make it easy to manage your entire feature flag lifecycle. The changes and updates you make to your splits through the CLI will be reflected immediately in the Split UI. --- diff --git a/setup.py b/setup.py index 1e09b2b..d995bfd 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='splitcli', - version='0.1.0', + version='0.2.0', description='Use Split.io from the command line', long_description=long_description, long_description_content_type='text/markdown', diff --git a/splitcli/__main__.py b/splitcli/__main__.py index 4392ad6..a9ee34a 100644 --- a/splitcli/__main__.py +++ b/splitcli/__main__.py @@ -7,6 +7,15 @@ from splitcli.ux import menu, text from splitcli import config +def initial_prompt_deprecate(): + print(''' +A few months ago Split Skunkworks (aka developer advocacy) embarked on an +experiment to create a command line interface (CLI) tool to provision and +interact with Split accounts. The experiment was a success and we are now +assessing putting formal engineering muscle behind it. For now, we are taking +it offline until such time as we are ready to release a fully supported version. + ''') + exit() def initial_prompt(): # Infinite loop is stopped by exit option @@ -51,6 +60,6 @@ def main(): exit() menu.print_logo() - initial_prompt() + initial_prompt_deprecate() main() From 4b65d700551f0f7da4dafc301da77d358d9938ff Mon Sep 17 00:00:00 2001 From: Micah Silverman Date: Fri, 24 Sep 2021 13:38:08 -0400 Subject: [PATCH 3/3] highlighted deprecation in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0640441..b31cd12 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ------------------- -**NOTE**: 9/24/2021 - A few months ago Split Skunkworks (aka developer advocacy) embarked on an experiment to create a command line interface (CLI) tool to provision and interact with Split accounts. The experiment was a success and we are now assessing putting formal engineering muscle behind it. For now, we are taking it offline until such time as we are ready to release a fully supported version. +**NOTE**: 9/24/2021 - A few months ago Split Skunkworks (aka developer advocacy) embarked on an experiment to create a command line interface (CLI) tool to provision and interact with Split accounts. The experiment was a success and we are now assessing putting formal engineering muscle behind it. **For now, we are taking it offline until such time as we are ready to release a fully supported version.** --------------------