Skip to content

Commit

Permalink
Renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
configcat-developer committed Oct 3, 2019
1 parent 933c893 commit 9f85cd5
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
12 changes: 6 additions & 6 deletions Deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand All @@ -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).
> 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).
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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]
```
Expand Down
20 changes: 10 additions & 10 deletions integrations/circleci/orb.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
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:
description: Executes the reference validatior job with default parameters.
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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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
Expand All @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
Expand Down

0 comments on commit 9f85cd5

Please sign in to comment.