From 9a1a14cc2fae8369fac5871ee9b90230f995c093 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Tue, 28 Feb 2023 18:32:45 -0800 Subject: [PATCH] chore: bump version: 0.20.0-rc4 -> 0.20.0 --- .bumpversion.cfg | 2 +- .circleci/config.yml | 2 +- VERSION | 2 +- cli/determined_cli/__version__.py | 2 +- cli/setup.py | 4 ++-- common/determined_common/__version__.py | 2 +- common/setup.py | 4 ++-- deploy/determined_deploy/__version__.py | 2 +- deploy/setup.py | 4 ++-- harness/determined/__version__.py | 2 +- harness/determined/deploy/aws/templates/efs.yaml | 2 +- harness/determined/deploy/aws/templates/fsx.yaml | 2 +- harness/determined/deploy/aws/templates/govcloud.yaml | 2 +- harness/determined/deploy/aws/templates/secure.yaml | 2 +- harness/determined/deploy/aws/templates/simple.yaml | 2 +- harness/setup.py | 2 +- helm/charts/determined/Chart.yaml | 4 ++-- .../examples/huggingface/language-modeling/clm_config.yaml | 2 +- .../examples/huggingface/language-modeling/mlm_config.yaml | 2 +- .../examples/huggingface/language-modeling/plm_config.yaml | 2 +- .../examples/huggingface/multiple-choice/swag_config.yaml | 2 +- model_hub/examples/huggingface/question-answering/squad.yaml | 2 +- .../huggingface/question-answering/squad_beam_search.yaml | 2 +- .../huggingface/question-answering/squad_distributed.yaml | 2 +- .../examples/huggingface/question-answering/squad_v2.yaml | 2 +- .../huggingface/question-answering/squad_v2_albert.yaml | 2 +- .../huggingface/question-answering/squad_v2_beam_search.yaml | 2 +- .../examples/huggingface/text-classification/glue_config.yaml | 2 +- .../examples/huggingface/text-classification/xnli_config.yaml | 2 +- .../examples/huggingface/token-classification/ner_config.yaml | 2 +- model_hub/examples/mmdetection/fasterrcnn.yaml | 2 +- model_hub/examples/mmdetection/hydra/configs/config.yaml | 2 +- model_hub/examples/mmdetection/maskrcnn.yaml | 2 +- model_hub/examples/mmdetection/panoptic_fpn.yaml | 2 +- model_hub/examples/mmdetection/yolov3.yaml | 2 +- model_hub/model_hub/__version__.py | 2 +- model_hub/setup.py | 2 +- webui/react/craco.config.js | 2 +- webui/react/vite.config.ts | 2 +- 39 files changed, 43 insertions(+), 43 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1dbeb4d00e7..c4ddc1fcaa5 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.20.0-rc4 +current_version = 0.20.0 commit = true tag = true tag_name = {new_version} diff --git a/.circleci/config.yml b/.circleci/config.yml index 824ab621beb..83712b0205d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,7 +24,7 @@ executors: parameters: det-version: type: string - default: 0.20.0-rc4 + default: 0.20.0 docker-image: type: string default: determinedai/cimg-base:latest diff --git a/VERSION b/VERSION index e97472e0048..a881cf79f29 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.20.0-rc4 \ No newline at end of file +0.20.0 \ No newline at end of file diff --git a/cli/determined_cli/__version__.py b/cli/determined_cli/__version__.py index d83ac5563f4..5f4bb0b3459 100644 --- a/cli/determined_cli/__version__.py +++ b/cli/determined_cli/__version__.py @@ -1 +1 @@ -__version__ = "0.20.0-rc4" +__version__ = "0.20.0" diff --git a/cli/setup.py b/cli/setup.py index 57772b425ac..39c89606624 100644 --- a/cli/setup.py +++ b/cli/setup.py @@ -2,7 +2,7 @@ setup( name="determined-cli", - version="0.20.0-rc4", + version="0.20.0", author="Determined AI", author_email="hello@determined.ai", url="https://determined.ai/", @@ -13,6 +13,6 @@ packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), python_requires=">=3.6", install_requires=[ - "determined==0.20.0-rc4", + "determined==0.20.0", ], ) diff --git a/common/determined_common/__version__.py b/common/determined_common/__version__.py index d83ac5563f4..5f4bb0b3459 100644 --- a/common/determined_common/__version__.py +++ b/common/determined_common/__version__.py @@ -1 +1 @@ -__version__ = "0.20.0-rc4" +__version__ = "0.20.0" diff --git a/common/setup.py b/common/setup.py index c05fc960539..0b1e97c6e5b 100644 --- a/common/setup.py +++ b/common/setup.py @@ -2,7 +2,7 @@ setup( name="determined-common", - version="0.20.0-rc4", + version="0.20.0", author="Determined AI", author_email="hello@determined.ai", url="https://determined.ai/", @@ -14,7 +14,7 @@ python_requires=">=3.6", package_data={"determined.common": ["py.typed"]}, install_requires=[ - "determined==0.20.0-rc4", + "determined==0.20.0", ], zip_safe=False, ) diff --git a/deploy/determined_deploy/__version__.py b/deploy/determined_deploy/__version__.py index d83ac5563f4..5f4bb0b3459 100644 --- a/deploy/determined_deploy/__version__.py +++ b/deploy/determined_deploy/__version__.py @@ -1 +1 @@ -__version__ = "0.20.0-rc4" +__version__ = "0.20.0" diff --git a/deploy/setup.py b/deploy/setup.py index 0b3ca255274..1448556126f 100644 --- a/deploy/setup.py +++ b/deploy/setup.py @@ -2,7 +2,7 @@ setup( name="determined-deploy", - version="0.20.0-rc4", + version="0.20.0", author="Determined AI", author_email="hello@determined.ai", url="https://determined.ai/", @@ -13,6 +13,6 @@ packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), python_requires=">=3.6", install_requires=[ - "determined==0.20.0-rc4", + "determined==0.20.0", ], ) diff --git a/harness/determined/__version__.py b/harness/determined/__version__.py index d83ac5563f4..5f4bb0b3459 100644 --- a/harness/determined/__version__.py +++ b/harness/determined/__version__.py @@ -1 +1 @@ -__version__ = "0.20.0-rc4" +__version__ = "0.20.0" diff --git a/harness/determined/deploy/aws/templates/efs.yaml b/harness/determined/deploy/aws/templates/efs.yaml index 9b268675284..54016c4e013 100644 --- a/harness/determined/deploy/aws/templates/efs.yaml +++ b/harness/determined/deploy/aws/templates/efs.yaml @@ -101,7 +101,7 @@ Parameters: Version: Type: String Description: Determined version or commit for master image - Default: 0.20.0-rc4 + Default: 0.20.0 DBPassword: Type: String diff --git a/harness/determined/deploy/aws/templates/fsx.yaml b/harness/determined/deploy/aws/templates/fsx.yaml index c003855e365..92da9f7eca3 100644 --- a/harness/determined/deploy/aws/templates/fsx.yaml +++ b/harness/determined/deploy/aws/templates/fsx.yaml @@ -101,7 +101,7 @@ Parameters: Version: Type: String Description: Determined version or commit for master image - Default: 0.20.0-rc4 + Default: 0.20.0 DBPassword: Type: String diff --git a/harness/determined/deploy/aws/templates/govcloud.yaml b/harness/determined/deploy/aws/templates/govcloud.yaml index 80bc676ccc4..b35846c0faf 100644 --- a/harness/determined/deploy/aws/templates/govcloud.yaml +++ b/harness/determined/deploy/aws/templates/govcloud.yaml @@ -67,7 +67,7 @@ Parameters: Version: Type: String Description: Determined version or commit for master docker image - Default: 0.20.0-rc4 + Default: 0.20.0 DBPassword: Type: String diff --git a/harness/determined/deploy/aws/templates/secure.yaml b/harness/determined/deploy/aws/templates/secure.yaml index ed40c3891e3..74c589198fd 100644 --- a/harness/determined/deploy/aws/templates/secure.yaml +++ b/harness/determined/deploy/aws/templates/secure.yaml @@ -122,7 +122,7 @@ Parameters: Version: Type: String Description: Determined version or commit for master image - Default: 0.20.0-rc4 + Default: 0.20.0 DBPassword: Type: String diff --git a/harness/determined/deploy/aws/templates/simple.yaml b/harness/determined/deploy/aws/templates/simple.yaml index 61bb9a6e6b6..07e77601222 100644 --- a/harness/determined/deploy/aws/templates/simple.yaml +++ b/harness/determined/deploy/aws/templates/simple.yaml @@ -93,7 +93,7 @@ Parameters: Version: Type: String Description: Determined version or commit for master docker image - Default: 0.20.0-rc4 + Default: 0.20.0 DBPassword: Type: String diff --git a/harness/setup.py b/harness/setup.py index bd8e7ae0580..129c0e97e6b 100644 --- a/harness/setup.py +++ b/harness/setup.py @@ -2,7 +2,7 @@ setup( name="determined", - version="0.20.0-rc4", + version="0.20.0", author="Determined AI", author_email="hello@determined.ai", url="https://determined.ai/", diff --git a/helm/charts/determined/Chart.yaml b/helm/charts/determined/Chart.yaml index 9450eb70be1..7264fccdff7 100644 --- a/helm/charts/determined/Chart.yaml +++ b/helm/charts/determined/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: determined description: A Helm chart for Determined -version: "0.20.0-rc4" +version: "0.20.0" icon: https://github.com/determined-ai/determined/blob/master/determined-logo.png?raw=true home: https://github.com/determined-ai/determined.git @@ -9,4 +9,4 @@ home: https://github.com/determined-ai/determined.git # a non-release version (e.g., X.Y.Z.dev0) you will have to specify an # existing official release version (e.g., X.Y.Z) or specify a commit has # that has been publicly published (all commits from master). -appVersion: "0.20.0-rc4" +appVersion: "0.20.0" diff --git a/model_hub/examples/huggingface/language-modeling/clm_config.yaml b/model_hub/examples/huggingface/language-modeling/clm_config.yaml index 9cbcbb89695..07e25dd8e0f 100644 --- a/model_hub/examples/huggingface/language-modeling/clm_config.yaml +++ b/model_hub/examples/huggingface/language-modeling/clm_config.yaml @@ -33,7 +33,7 @@ searcher: smaller_is_better: true environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 4 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/language-modeling/mlm_config.yaml b/model_hub/examples/huggingface/language-modeling/mlm_config.yaml index 63eaf72a741..989d46ca01d 100644 --- a/model_hub/examples/huggingface/language-modeling/mlm_config.yaml +++ b/model_hub/examples/huggingface/language-modeling/mlm_config.yaml @@ -36,7 +36,7 @@ searcher: smaller_is_better: true environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 1 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/language-modeling/plm_config.yaml b/model_hub/examples/huggingface/language-modeling/plm_config.yaml index 56ce0741271..86a5d3b6f65 100644 --- a/model_hub/examples/huggingface/language-modeling/plm_config.yaml +++ b/model_hub/examples/huggingface/language-modeling/plm_config.yaml @@ -37,7 +37,7 @@ searcher: smaller_is_better: true environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 2 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/multiple-choice/swag_config.yaml b/model_hub/examples/huggingface/multiple-choice/swag_config.yaml index 1d42431c37e..9a7037f669a 100644 --- a/model_hub/examples/huggingface/multiple-choice/swag_config.yaml +++ b/model_hub/examples/huggingface/multiple-choice/swag_config.yaml @@ -33,7 +33,7 @@ searcher: smaller_is_better: false environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 2 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/question-answering/squad.yaml b/model_hub/examples/huggingface/question-answering/squad.yaml index 081c46aa8e8..0596d063750 100644 --- a/model_hub/examples/huggingface/question-answering/squad.yaml +++ b/model_hub/examples/huggingface/question-answering/squad.yaml @@ -38,7 +38,7 @@ searcher: smaller_is_better: false environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 1 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/question-answering/squad_beam_search.yaml b/model_hub/examples/huggingface/question-answering/squad_beam_search.yaml index 28c0357cb1d..4a0be31f1ed 100644 --- a/model_hub/examples/huggingface/question-answering/squad_beam_search.yaml +++ b/model_hub/examples/huggingface/question-answering/squad_beam_search.yaml @@ -37,7 +37,7 @@ searcher: smaller_is_better: false environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 1 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/question-answering/squad_distributed.yaml b/model_hub/examples/huggingface/question-answering/squad_distributed.yaml index adf94443b3d..1eea4ea29fa 100644 --- a/model_hub/examples/huggingface/question-answering/squad_distributed.yaml +++ b/model_hub/examples/huggingface/question-answering/squad_distributed.yaml @@ -38,7 +38,7 @@ searcher: smaller_is_better: false environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 8 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/question-answering/squad_v2.yaml b/model_hub/examples/huggingface/question-answering/squad_v2.yaml index de8366ff8d3..c1dddcc7b45 100644 --- a/model_hub/examples/huggingface/question-answering/squad_v2.yaml +++ b/model_hub/examples/huggingface/question-answering/squad_v2.yaml @@ -38,7 +38,7 @@ searcher: smaller_is_better: false environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 1 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/question-answering/squad_v2_albert.yaml b/model_hub/examples/huggingface/question-answering/squad_v2_albert.yaml index 34d0e37b55e..b1d07856f86 100644 --- a/model_hub/examples/huggingface/question-answering/squad_v2_albert.yaml +++ b/model_hub/examples/huggingface/question-answering/squad_v2_albert.yaml @@ -40,7 +40,7 @@ searcher: smaller_is_better: false environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 8 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/question-answering/squad_v2_beam_search.yaml b/model_hub/examples/huggingface/question-answering/squad_v2_beam_search.yaml index 0cde8504a7a..b73640a390c 100644 --- a/model_hub/examples/huggingface/question-answering/squad_v2_beam_search.yaml +++ b/model_hub/examples/huggingface/question-answering/squad_v2_beam_search.yaml @@ -38,7 +38,7 @@ searcher: smaller_is_better: false environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 1 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/text-classification/glue_config.yaml b/model_hub/examples/huggingface/text-classification/glue_config.yaml index 1dac4ff75ff..a82964cfeb1 100644 --- a/model_hub/examples/huggingface/text-classification/glue_config.yaml +++ b/model_hub/examples/huggingface/text-classification/glue_config.yaml @@ -45,7 +45,7 @@ searcher: smaller_is_better: false environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 1 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/text-classification/xnli_config.yaml b/model_hub/examples/huggingface/text-classification/xnli_config.yaml index 6343f7ca3d0..c96dbbb3464 100644 --- a/model_hub/examples/huggingface/text-classification/xnli_config.yaml +++ b/model_hub/examples/huggingface/text-classification/xnli_config.yaml @@ -36,7 +36,7 @@ searcher: smaller_is_better: false environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 2 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/huggingface/token-classification/ner_config.yaml b/model_hub/examples/huggingface/token-classification/ner_config.yaml index 1075d0e1241..b9bc03f0532 100644 --- a/model_hub/examples/huggingface/token-classification/ner_config.yaml +++ b/model_hub/examples/huggingface/token-classification/ner_config.yaml @@ -34,7 +34,7 @@ searcher: smaller_is_better: false environment: image: - gpu: determinedai/model-hub-transformers:0.20.0-rc4 + gpu: determinedai/model-hub-transformers:0.20.0 resources: slots_per_trial: 1 # We add a bind_mount here so that cached data, tokenized data, and models will be saved to the diff --git a/model_hub/examples/mmdetection/fasterrcnn.yaml b/model_hub/examples/mmdetection/fasterrcnn.yaml index cb2cadaa30d..a1a65b653f0 100644 --- a/model_hub/examples/mmdetection/fasterrcnn.yaml +++ b/model_hub/examples/mmdetection/fasterrcnn.yaml @@ -40,7 +40,7 @@ searcher: max_restarts: 5 environment: image: - gpu: determinedai/model-hub-mmdetection:0.20.0-rc4 + gpu: determinedai/model-hub-mmdetection:0.20.0 environment_variables: - OMP_NUM_THREADS=1 # Following pytorch dtrain, this environment variable is set to 1 to avoid overloading the system. diff --git a/model_hub/examples/mmdetection/hydra/configs/config.yaml b/model_hub/examples/mmdetection/hydra/configs/config.yaml index cba79565659..0788f4915f8 100644 --- a/model_hub/examples/mmdetection/hydra/configs/config.yaml +++ b/model_hub/examples/mmdetection/hydra/configs/config.yaml @@ -14,7 +14,7 @@ min_validation_period: environment: image: - gpu: determinedai/model-hub-mmdetection:0.20.0-rc4 + gpu: determinedai/model-hub-mmdetection:0.20.0 environment_variables: - OMP_NUM_THREADS=1 # Following pytorch dtrain, this environment variable is set to 1 to avoid overloading the system. diff --git a/model_hub/examples/mmdetection/maskrcnn.yaml b/model_hub/examples/mmdetection/maskrcnn.yaml index 2c584eb9f4b..ea310a04819 100644 --- a/model_hub/examples/mmdetection/maskrcnn.yaml +++ b/model_hub/examples/mmdetection/maskrcnn.yaml @@ -40,7 +40,7 @@ searcher: max_restarts: 5 environment: image: - gpu: determinedai/model-hub-mmdetection:0.20.0-rc4 + gpu: determinedai/model-hub-mmdetection:0.20.0 environment_variables: - OMP_NUM_THREADS=1 # Following pytorch dtrain, this environment variable is set to 1 to avoid overloading the system. diff --git a/model_hub/examples/mmdetection/panoptic_fpn.yaml b/model_hub/examples/mmdetection/panoptic_fpn.yaml index ead7347158f..cc980ddbfaf 100644 --- a/model_hub/examples/mmdetection/panoptic_fpn.yaml +++ b/model_hub/examples/mmdetection/panoptic_fpn.yaml @@ -40,7 +40,7 @@ searcher: max_restarts: 5 environment: image: - gpu: determinedai/model-hub-mmdetection:0.20.0-rc4 + gpu: determinedai/model-hub-mmdetection:0.20.0 environment_variables: - OMP_NUM_THREADS=1 # Following pytorch dtrain, this environment variable is set to 1 to avoid overloading the system. diff --git a/model_hub/examples/mmdetection/yolov3.yaml b/model_hub/examples/mmdetection/yolov3.yaml index 5d1f4caaa3b..145e6d9210f 100644 --- a/model_hub/examples/mmdetection/yolov3.yaml +++ b/model_hub/examples/mmdetection/yolov3.yaml @@ -40,7 +40,7 @@ searcher: max_restarts: 5 environment: image: - gpu: determinedai/model-hub-mmdetection:0.20.0-rc4 + gpu: determinedai/model-hub-mmdetection:0.20.0 environment_variables: - OMP_NUM_THREADS=1 # Following pytorch dtrain, this environment variable is set to 1 to avoid overloading the system. diff --git a/model_hub/model_hub/__version__.py b/model_hub/model_hub/__version__.py index d83ac5563f4..5f4bb0b3459 100644 --- a/model_hub/model_hub/__version__.py +++ b/model_hub/model_hub/__version__.py @@ -1 +1 @@ -__version__ = "0.20.0-rc4" +__version__ = "0.20.0" diff --git a/model_hub/setup.py b/model_hub/setup.py index 94ca3e5d16e..794e148399c 100644 --- a/model_hub/setup.py +++ b/model_hub/setup.py @@ -2,7 +2,7 @@ setup( name="model-hub", - version="0.20.0-rc4", + version="0.20.0", author="Determined AI", author_email="hello@determined.ai", url="https://determined.ai/", diff --git a/webui/react/craco.config.js b/webui/react/craco.config.js index 6386ef28a2c..79f0637df7a 100644 --- a/webui/react/craco.config.js +++ b/webui/react/craco.config.js @@ -6,7 +6,7 @@ const config = require('./src/shared/configs/craco.config'); const webpackEnvPlugin = new DefinePlugin({ 'process.env.IS_DEV': JSON.stringify(config.isDev), 'process.env.SERVER_ADDRESS': JSON.stringify(process.env.SERVER_ADDRESS), - 'process.env.VERSION': '"0.20.0-rc4"', + 'process.env.VERSION': '"0.20.0"', }); diff --git a/webui/react/vite.config.ts b/webui/react/vite.config.ts index d2a5639434c..c6b333814e8 100644 --- a/webui/react/vite.config.ts +++ b/webui/react/vite.config.ts @@ -99,7 +99,7 @@ export default defineConfig(({ mode }) => ({ 'process.env.IS_DEV': JSON.stringify(mode === 'development'), 'process.env.PUBLIC_URL': JSON.stringify(publicUrl || ''), 'process.env.SERVER_ADDRESS': JSON.stringify(process.env.SERVER_ADDRESS), - 'process.env.VERSION': '"0.20.0-rc4"', + 'process.env.VERSION': '"0.20.0"', }, optimizeDeps: { include: ['notebook'],