From 106b352802563243c49c52e0a9972e5b04257a25 Mon Sep 17 00:00:00 2001 From: Danny Zhu Date: Fri, 3 Sep 2021 14:35:14 -0600 Subject: [PATCH] chore: bump version: 0.16.5rc2 -> 0.16.5 --- .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/determined/deploy/aws/templates/vpc.yaml | 2 +- harness/setup.py | 2 +- helm/charts/determined/Chart.yaml | 2 +- .../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/model_hub/__version__.py | 2 +- model_hub/setup.py | 2 +- webui/react/config-overrides.js | 2 +- 34 files changed, 37 insertions(+), 37 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ebecc67197f..4cb4e35c467 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.16.5rc2 +current_version = 0.16.5 commit = true tag = true tag_name = {new_version} diff --git a/.circleci/config.yml b/.circleci/config.yml index bf0dd8621b5..fa6e2aa5519 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,7 +26,7 @@ executors: parameters: det-version: type: string - default: 0.16.5rc2 + default: 0.16.5 release-and-rc-filters: &release-and-rc-filters branches: diff --git a/VERSION b/VERSION index d81bf52449e..3ccca1e8b89 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.16.5rc2 \ No newline at end of file +0.16.5 \ No newline at end of file diff --git a/cli/determined_cli/__version__.py b/cli/determined_cli/__version__.py index 66fa8c8da29..09cac6d4d75 100644 --- a/cli/determined_cli/__version__.py +++ b/cli/determined_cli/__version__.py @@ -1 +1 @@ -__version__ = "0.16.5rc2" +__version__ = "0.16.5" diff --git a/cli/setup.py b/cli/setup.py index 4ec48147bbc..21e67d76697 100644 --- a/cli/setup.py +++ b/cli/setup.py @@ -2,7 +2,7 @@ setup( name="determined-cli", - version="0.16.5rc2", + version="0.16.5", 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.16.5rc2", + "determined==0.16.5", ], ) diff --git a/common/determined_common/__version__.py b/common/determined_common/__version__.py index 66fa8c8da29..09cac6d4d75 100644 --- a/common/determined_common/__version__.py +++ b/common/determined_common/__version__.py @@ -1 +1 @@ -__version__ = "0.16.5rc2" +__version__ = "0.16.5" diff --git a/common/setup.py b/common/setup.py index edb0feba414..24dc1192499 100644 --- a/common/setup.py +++ b/common/setup.py @@ -2,7 +2,7 @@ setup( name="determined-common", - version="0.16.5rc2", + version="0.16.5", author="Determined AI", author_email="hello@determined.ai", url="https://determined.ai/", @@ -14,7 +14,7 @@ python_requires=">=3.5", package_data={"determined.common": ["py.typed"]}, install_requires=[ - "determined==0.16.5rc2", + "determined==0.16.5", ], zip_safe=False, ) diff --git a/deploy/determined_deploy/__version__.py b/deploy/determined_deploy/__version__.py index 66fa8c8da29..09cac6d4d75 100644 --- a/deploy/determined_deploy/__version__.py +++ b/deploy/determined_deploy/__version__.py @@ -1 +1 @@ -__version__ = "0.16.5rc2" +__version__ = "0.16.5" diff --git a/deploy/setup.py b/deploy/setup.py index d8296415feb..d7115c7cb82 100644 --- a/deploy/setup.py +++ b/deploy/setup.py @@ -2,7 +2,7 @@ setup( name="determined-deploy", - version="0.16.5rc2", + version="0.16.5", 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.16.5rc2", + "determined==0.16.5", ], ) diff --git a/harness/determined/__version__.py b/harness/determined/__version__.py index 66fa8c8da29..09cac6d4d75 100644 --- a/harness/determined/__version__.py +++ b/harness/determined/__version__.py @@ -1 +1 @@ -__version__ = "0.16.5rc2" +__version__ = "0.16.5" diff --git a/harness/determined/deploy/aws/templates/efs.yaml b/harness/determined/deploy/aws/templates/efs.yaml index ec0d1995791..4569346e8dd 100644 --- a/harness/determined/deploy/aws/templates/efs.yaml +++ b/harness/determined/deploy/aws/templates/efs.yaml @@ -82,7 +82,7 @@ Parameters: Version: Type: String Description: Determined version or commit for master image - Default: 0.16.5rc2 + Default: 0.16.5 DBPassword: Type: String diff --git a/harness/determined/deploy/aws/templates/fsx.yaml b/harness/determined/deploy/aws/templates/fsx.yaml index 8c13bc5a87e..93add606ec7 100644 --- a/harness/determined/deploy/aws/templates/fsx.yaml +++ b/harness/determined/deploy/aws/templates/fsx.yaml @@ -81,7 +81,7 @@ Parameters: Version: Type: String Description: Determined version or commit for master image - Default: 0.16.5rc2 + Default: 0.16.5 DBPassword: Type: String diff --git a/harness/determined/deploy/aws/templates/govcloud.yaml b/harness/determined/deploy/aws/templates/govcloud.yaml index d579a7a418f..a9ea15654e4 100644 --- a/harness/determined/deploy/aws/templates/govcloud.yaml +++ b/harness/determined/deploy/aws/templates/govcloud.yaml @@ -47,7 +47,7 @@ Parameters: Version: Type: String Description: Determined version or commit for master docker image - Default: 0.16.5rc2 + Default: 0.16.5 DBPassword: Type: String diff --git a/harness/determined/deploy/aws/templates/secure.yaml b/harness/determined/deploy/aws/templates/secure.yaml index 9492ddfb1ba..92500821e84 100644 --- a/harness/determined/deploy/aws/templates/secure.yaml +++ b/harness/determined/deploy/aws/templates/secure.yaml @@ -102,7 +102,7 @@ Parameters: Version: Type: String Description: Determined version or commit for master image - Default: 0.16.5rc2 + Default: 0.16.5 DBPassword: Type: String diff --git a/harness/determined/deploy/aws/templates/simple.yaml b/harness/determined/deploy/aws/templates/simple.yaml index 964ca74c9f3..e5fabc76eec 100644 --- a/harness/determined/deploy/aws/templates/simple.yaml +++ b/harness/determined/deploy/aws/templates/simple.yaml @@ -73,7 +73,7 @@ Parameters: Version: Type: String Description: Determined version or commit for master docker image - Default: 0.16.5rc2 + Default: 0.16.5 DBPassword: Type: String diff --git a/harness/determined/deploy/aws/templates/vpc.yaml b/harness/determined/deploy/aws/templates/vpc.yaml index 8ed2d732ee6..7f4fc4237f1 100644 --- a/harness/determined/deploy/aws/templates/vpc.yaml +++ b/harness/determined/deploy/aws/templates/vpc.yaml @@ -82,7 +82,7 @@ Parameters: Version: Type: String Description: Determined version or commit for master image - Default: 0.16.5rc2 + Default: 0.16.5 DBPassword: Type: String diff --git a/harness/setup.py b/harness/setup.py index 6c877c4c96f..c80a120192b 100644 --- a/harness/setup.py +++ b/harness/setup.py @@ -2,7 +2,7 @@ setup( name="determined", - version="0.16.5rc2", + version="0.16.5", 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 e11d303e7b2..21e7311b6cd 100644 --- a/helm/charts/determined/Chart.yaml +++ b/helm/charts/determined/Chart.yaml @@ -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.16.5rc2" +appVersion: "0.16.5" diff --git a/model_hub/examples/huggingface/language-modeling/clm_config.yaml b/model_hub/examples/huggingface/language-modeling/clm_config.yaml index a9a0c2b3fe4..3b1f9f88e31 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 e664c2778ef..89910d4f4e3 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 69eb9fcfc9f..0fa705d4fcc 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 aa93f92db82..01ebeeb73de 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 590a0511fc1..3ece0a1018b 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 b3db0310e10..17e6e284c8c 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 3fddc23b424..9e8ead045b7 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 26bf09cda2e..377389c058b 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 503621bdecf..b427a1e1a5b 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 b2aa7c764a4..30a096faaee 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 c80cecda579..51af9decfc5 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 6c4eb4c8796..62b0d0b390e 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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 a6e2f6f37dd..aeb3f0545fc 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.16.5rc2 + gpu: determinedai/model-hub-transformers:0.16.5 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/model_hub/__version__.py b/model_hub/model_hub/__version__.py index 66fa8c8da29..09cac6d4d75 100644 --- a/model_hub/model_hub/__version__.py +++ b/model_hub/model_hub/__version__.py @@ -1 +1 @@ -__version__ = "0.16.5rc2" +__version__ = "0.16.5" diff --git a/model_hub/setup.py b/model_hub/setup.py index 0cbf648ceff..224c0842900 100644 --- a/model_hub/setup.py +++ b/model_hub/setup.py @@ -2,7 +2,7 @@ setup( name="model-hub", - version="0.16.5rc2", + version="0.16.5", author="Determined AI", author_email="hello@determined.ai", url="https://determined.ai/", diff --git a/webui/react/config-overrides.js b/webui/react/config-overrides.js index d00ccfdb6c2..f3ac538e9bf 100644 --- a/webui/react/config-overrides.js +++ b/webui/react/config-overrides.js @@ -102,7 +102,7 @@ const webpackConfig = override( // Webapp version is hardcoded but handled by `bumpversion` addWebpackPlugin( new webpack.DefinePlugin({ - 'process.env.VERSION': '"0.16.5rc2"', + 'process.env.VERSION': '"0.16.5"', 'process.env.IS_DEV': JSON.stringify(IS_DEV), 'process.env.SERVER_ADDRESS': JSON.stringify(process.env.SERVER_ADDRESS), })