forked from configcat/feature-flag-reference-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e77636
commit 661b70f
Showing
2 changed files
with
11 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ examples: | |
usage: | ||
version: 2.1 | ||
orbs: | ||
configcat: configcat/[email protected].2 | ||
configcat: configcat/[email protected].3 | ||
workflows: | ||
main: | ||
jobs: | ||
|
@@ -18,7 +18,7 @@ examples: | |
usage: | ||
version: 2.1 | ||
orbs: | ||
configcat: configcat/[email protected].2 | ||
configcat: configcat/[email protected].3 | ||
workflows: | ||
main: | ||
jobs: | ||
|
@@ -31,7 +31,7 @@ examples: | |
usage: | ||
version: 2.1 | ||
orbs: | ||
configcat: configcat/[email protected].2 | ||
configcat: configcat/[email protected].3 | ||
jobs: | ||
build: | ||
docker: | ||
|
@@ -44,7 +44,7 @@ examples: | |
usage: | ||
version: 2.1 | ||
orbs: | ||
configcat: configcat/[email protected].2 | ||
configcat: configcat/[email protected].3 | ||
jobs: | ||
build: | ||
docker: | ||
|
@@ -63,7 +63,7 @@ examples: | |
usage: | ||
version: 2.1 | ||
orbs: | ||
configcat: configcat/[email protected].2 | ||
configcat: configcat/[email protected].3 | ||
jobs: | ||
build: | ||
executor: configcat/default | ||
|
@@ -78,7 +78,7 @@ executors: | |
docker-image-version: | ||
description: The version of the ConfigCat flag reference validator docker image. | ||
type: string | ||
default: 1.0.2 | ||
default: 1.0.3 | ||
docker: | ||
- image: configcat/flag-reference-validator:<< parameters.docker-image-version >> | ||
|
||
|
@@ -89,7 +89,7 @@ commands: | |
validator-version: | ||
description: The version of the ConfigCat flag reference validator pypi package. | ||
type: string | ||
default: 1.0.2 | ||
default: 1.0.3 | ||
steps: | ||
- run: | ||
name: Install dependencies | ||
|
@@ -153,7 +153,7 @@ jobs: | |
default: false | ||
executor: | ||
name: default | ||
docker-image-version: 1.0.2 | ||
docker-image-version: 1.0.3 | ||
working_directory: /ref-validator | ||
steps: | ||
- checkout: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,6 @@ | ||
import setuptools | ||
|
||
|
||
def readme(): | ||
with open('README.md') as f: | ||
return f.read() | ||
|
||
|
||
version = "1.0.2" | ||
|
||
version = "1.0.3" | ||
|
||
setuptools.setup( | ||
name='configcat-flag-reference-validator', | ||
|
@@ -18,8 +11,8 @@ def readme(): | |
license='MIT', | ||
author='ConfigCat', | ||
author_email='[email protected]', | ||
description='ConfigCat flag reference validator.', | ||
long_description=readme(), | ||
description='ConfigCat feature flag reference validator.', | ||
long_description="This tool can be used for discovering ConfigCat feature flag usages in your source code and validating them against your own ConfigCat configuration dashboard. It searches for ConfigCat SDK usage and greps the feature flag keys from the source code, then it compares them with the keys got from your ConfigCat dashboard.", | ||
long_description_content_type="text/markdown", | ||
install_requires=['requests>=2.19.1'], | ||
classifiers=[ | ||
|