From 9f85cd5a96990273d315c668dcc1d39789f419b0 Mon Sep 17 00:00:00 2001 From: ConfigCat Date: Thu, 3 Oct 2019 22:45:02 +0200 Subject: [PATCH] Renaming --- Deploy.md | 12 ++++++------ README.md | 8 ++++---- integrations/circleci/orb.yml | 20 ++++++++++---------- setup.py | 4 ++-- 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Deploy.md b/Deploy.md index 8b0e300..b8a4863 100644 --- a/Deploy.md +++ b/Deploy.md @@ -20,9 +20,9 @@ Use the **same version** for the git tag as in the 2. step of the Preparation se ``` - Via Github release - Create a new [Github release](https://github.com/configcat/flag-reference-validator/releases) with a new version tag and release notes. + Create a new [Github release](https://github.com/configcat/feature-flag-reference-validator/releases) with a new version tag and release notes. -At this point you should have a new [docker image](https://cloud.docker.com/u/configcat/repository/docker/configcat/flag-reference-validator) and [pypi package](https://pypi.org/project/configcat-flag-reference-validator/) with the new version you set earlier. +At this point you should have a new [docker image](https://cloud.docker.com/u/configcat/repository/docker/configcat/feature-flag-reference-validator) and [pypi package](https://pypi.org/project/configcat-flag-reference-validator/) with the new version you set earlier. ## Publish a new CircleCI orb 1. Install the [CircleCI CLI](https://circleci.com/docs/2.0/local-cli/#quick-installation). @@ -34,9 +34,9 @@ At this point you should have a new [docker image](https://cloud.docker.com/u/co ``` 5. Publish the new orb. ```bash - circleci orb publish orb.yml configcat/flag_reference_validator@[MAJOR].[MINOR].[PATCH] + circleci orb publish orb.yml configcat/feature-flag-reference-validator@[MAJOR].[MINOR].[PATCH] ``` - > Example: `circleci orb publish integrations/circleci/orb.yml configcat/flag_reference_validator@1.2.1` + > Example: `circleci orb publish integrations/circleci/orb.yml configcat/feature-flag-reference-validator@1.2.1` - > You can also publish non-public developer versions with the `dev:` version prefix like: `flag_reference_validator@dev:1.2.1` -6. Make sure the new version is available in the [Orb Registry](https://circleci.com/orbs/registry/orb/configcat/flag_reference_validator). \ No newline at end of file + > You can also publish non-public developer versions with the `dev:` version prefix like: `feature-flag-reference-validator@dev:1.2.1` +6. Make sure the new version is available in the [Orb Registry](https://circleci.com/orbs/registry/orb/configcat/feature-flag-reference-validator). \ No newline at end of file diff --git a/README.md b/README.md index eff7d79..e6b0a2c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# flag-reference-validator -[![PyPI](https://img.shields.io/pypi/v/configcat-flag-reference-validator.svg)](https://pypi.python.org/pypi/configcat-flag-reference-validator) [![Docker version](https://img.shields.io/badge/docker-latest-blue)](https://hub.docker.com/r/configcat/flag-reference-validator) +# feature-flag-reference-validator +[![PyPI](https://img.shields.io/pypi/v/configcat-flag-reference-validator.svg)](https://pypi.python.org/pypi/configcat-flag-reference-validator) [![Docker version](https://img.shields.io/badge/docker-latest-blue)](https://hub.docker.com/r/configcat/feature-flag-reference-validator) CLI tool for validating ConfigCat feature flag references in your source code. @@ -29,9 +29,9 @@ This CLI tool is written in python so you have to have python installed on your ### Docker -Pull the configcat/flag-reference-validator docker image to your environment. The image provides an entrypoint `configcat-validator` to execute the validator. +Pull the configcat/feature-flag-reference-validator docker image to your environment. The image provides an entrypoint `configcat-validator` to execute the validator. ```powershell -docker pull configcat/flag-reference-validator +docker pull configcat/feature-flag-reference-validator docker run configcat-validator [YOUR-CONFIGCAT-APIKEY] [DIRECTORY-TO-SCAN] ``` diff --git a/integrations/circleci/orb.yml b/integrations/circleci/orb.yml index 3ba3c24..0fa2bd0 100644 --- a/integrations/circleci/orb.yml +++ b/integrations/circleci/orb.yml @@ -1,5 +1,5 @@ version: 2.1 -description: "Job and commands for discovering ConfigCat feature flag usages in your source code and validating them against your own ConfigCat configuration dashboard. Documentation: https://github.com/configcat/flag-reference-validator" +description: "Job and commands for discovering ConfigCat feature flag usages in your source code and validating them against your own ConfigCat configuration dashboard. Documentation: https://github.com/configcat/feature-flag-reference-validator" examples: job-default-configuration: @@ -7,7 +7,7 @@ examples: usage: version: 2.1 orbs: - configcat: configcat/flag_reference_validator@1.0.3 + configcat: configcat/feature-flag-reference-validator@1.0.4 workflows: main: jobs: @@ -18,7 +18,7 @@ examples: usage: version: 2.1 orbs: - configcat: configcat/flag_reference_validator@1.0.3 + configcat: configcat/feature-flag-reference-validator@1.0.4 workflows: main: jobs: @@ -31,7 +31,7 @@ examples: usage: version: 2.1 orbs: - configcat: configcat/flag_reference_validator@1.0.3 + configcat: configcat/feature-flag-reference-validator@1.0.4 jobs: build: docker: @@ -44,7 +44,7 @@ examples: usage: version: 2.1 orbs: - configcat: configcat/flag_reference_validator@1.0.3 + configcat: configcat/feature-flag-reference-validator@1.0.4 jobs: build: docker: @@ -63,7 +63,7 @@ examples: usage: version: 2.1 orbs: - configcat: configcat/flag_reference_validator@1.0.3 + configcat: configcat/feature-flag-reference-validator@1.0.4 jobs: build: executor: configcat/default @@ -78,9 +78,9 @@ executors: docker-image-version: description: The version of the ConfigCat flag reference validator docker image. type: string - default: 1.0.3 + default: 1.0.4 docker: - - image: configcat/flag-reference-validator:<< parameters.docker-image-version >> + - image: configcat/feature-flag-reference-validator:<< parameters.docker-image-version >> commands: install-validator: @@ -89,7 +89,7 @@ commands: validator-version: description: The version of the ConfigCat flag reference validator pypi package. type: string - default: 1.0.3 + default: 1.0.4 steps: - run: name: Install dependencies @@ -153,7 +153,7 @@ jobs: default: false executor: name: default - docker-image-version: 1.0.3 + docker-image-version: 1.0.4 working_directory: /ref-validator steps: - checkout: diff --git a/setup.py b/setup.py index e6b0652..a4df87e 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,13 @@ import setuptools -version = "1.0.3" +version = "1.0.4" setuptools.setup( name='configcat-flag-reference-validator', version=version, scripts=['configcat-validator'], packages=['configcat', 'configcat.reference_validator'], - url='https://github.com/configcat/flag-reference-validator', + url='https://github.com/configcat/feature-flag-reference-validator', license='MIT', author='ConfigCat', author_email='developer@configcat.com',