From 65b1e5168760e1e5e750f58d46e5a257c031eaab Mon Sep 17 00:00:00 2001 From: Ryan Date: Tue, 28 Apr 2020 17:34:57 -0600 Subject: [PATCH] chore: bump version: 0.12.3rc3 -> 0.12.3 --- .bumpversion.cfg | 2 +- .circleci/config.yml | 2 +- RELEASE.md | 4 ++-- VERSION | 2 +- deploy/determined_deploy/aws/templates/secure.yaml | 2 +- deploy/determined_deploy/aws/templates/simple.yaml | 2 +- deploy/determined_deploy/aws/templates/vpc.yaml | 2 +- webui/elm/public/index.html | 2 +- webui/react/config-overrides.js | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 687773614b7..e0611167336 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.3rc3 +current_version = 0.12.3 commit = true message = chore: bump version: {current_version} -> {new_version} parse = (?P\d+)\.(?P\d+)(\.(?P\d+)((?P
\.dev|a|b|rc|final|post)?((\.dev)?(?P\d+))?))?
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 591bc0795e1..445829533b0 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -18,7 +18,7 @@ executors:
 parameters:
   det-version:
     type: string
-    default: 0.12.3rc3
+    default: 0.12.3
 
 
 commands:
diff --git a/RELEASE.md b/RELEASE.md
index 675e4d07450..6861fb0102c 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -72,8 +72,8 @@ git commit -m "Update release notes."
 5. Tag the release and push the tag to the main Determined repo:
 
 ```bash
-git tag v0.12.3rc3
-git push upstream v0.12.3rc3
+git tag v0.12.3
+git push upstream v0.12.3
 ```
 
 6. Build Determined, publish the tarball, and publish the Determined images (cloud and docker):
diff --git a/VERSION b/VERSION
index 711536c8f65..d61567cd134 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.12.3rc3
\ No newline at end of file
+0.12.3
\ No newline at end of file
diff --git a/deploy/determined_deploy/aws/templates/secure.yaml b/deploy/determined_deploy/aws/templates/secure.yaml
index db554153837..fe872fabc03 100644
--- a/deploy/determined_deploy/aws/templates/secure.yaml
+++ b/deploy/determined_deploy/aws/templates/secure.yaml
@@ -59,7 +59,7 @@ Parameters:
   Version:
     Type: String
     Description: Determined version or commit for master image
-    Default: 0.12.3rc3
+    Default: 0.12.3
 
   DBPassword:
     Type: String
diff --git a/deploy/determined_deploy/aws/templates/simple.yaml b/deploy/determined_deploy/aws/templates/simple.yaml
index aa62f6cb843..790625deb66 100644
--- a/deploy/determined_deploy/aws/templates/simple.yaml
+++ b/deploy/determined_deploy/aws/templates/simple.yaml
@@ -34,7 +34,7 @@ Parameters:
   Version:
     Type: String
     Description: Determined version or commit for master docker image
-    Default: 0.12.3rc3
+    Default: 0.12.3
 
   DBPassword:
     Type: String
diff --git a/deploy/determined_deploy/aws/templates/vpc.yaml b/deploy/determined_deploy/aws/templates/vpc.yaml
index 41af63503c1..34422f9f1f6 100644
--- a/deploy/determined_deploy/aws/templates/vpc.yaml
+++ b/deploy/determined_deploy/aws/templates/vpc.yaml
@@ -49,7 +49,7 @@ Parameters:
   Version:
     Type: String
     Description: Determined version or commit for master image
-    Default: 0.12.3rc3
+    Default: 0.12.3
 
   DBPassword:
     Type: String
diff --git a/webui/elm/public/index.html b/webui/elm/public/index.html
index 943e83571e0..5048b9d4e23 100644
--- a/webui/elm/public/index.html
+++ b/webui/elm/public/index.html
@@ -32,7 +32,7 @@
       }
     }();
 
-    let app = Elm.Main.init({ flags: '0.12.3rc3' });
+    let app = Elm.Main.init({ flags: '0.12.3' });
     DetShims.addPorts(app);
   
 
diff --git a/webui/react/config-overrides.js b/webui/react/config-overrides.js
index 20863bd4128..362552f3cdc 100644
--- a/webui/react/config-overrides.js
+++ b/webui/react/config-overrides.js
@@ -49,7 +49,7 @@ module.exports = override(
   // Webapp version is hardcoded but handled by `bumpversion`
   addWebpackPlugin(
     new webpack.DefinePlugin({
-      'process.env.VERSION': '"0.12.3rc3"',
+      'process.env.VERSION': '"0.12.3"',
       'process.env.IS_DEV': JSON.stringify(process.env.NODE_ENV === 'development'),
     })
   )