Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump version: 0.12.3rc3 -> 0.12.3
Browse files Browse the repository at this point in the history
rb-determined-ai committed Apr 28, 2020
1 parent 4ddfab4 commit 65b1e51
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+)((?P<pre>\.dev|a|b|rc|final|post)?((\.dev)?(?P<dev>\d+))?))?
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ executors:
parameters:
det-version:
type: string
default: 0.12.3rc3
default: 0.12.3


commands:
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -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):
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.3rc3
0.12.3
2 changes: 1 addition & 1 deletion deploy/determined_deploy/aws/templates/secure.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion deploy/determined_deploy/aws/templates/simple.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion deploy/determined_deploy/aws/templates/vpc.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion webui/elm/public/index.html
Original file line number Diff line number Diff line change
@@ -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);
</script>
</body>
2 changes: 1 addition & 1 deletion webui/react/config-overrides.js
Original file line number Diff line number Diff line change
@@ -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'),
})
)

0 comments on commit 65b1e51

Please sign in to comment.