Skip to content

Commit

Permalink
chore: bump version: 0.12.3rc0 -> 0.12.3rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
rb-determined-ai committed Apr 24, 2020
1 parent 50f452c commit 2743056
Show file tree
Hide file tree
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.3rc0
current_version = 0.12.3rc1
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+))?))?
Expand Down
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ executors:
parameters:
det-version:
type: string
default: 0.12.3rc0
default: 0.12.3rc1


commands:
Expand Down
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3rc0
git push upstream v0.12.3rc0
git tag v0.12.3rc1
git push upstream v0.12.3rc1
```

6. Build Determined, publish the tarball, and publish the Determined images (cloud and docker):
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.3rc0
0.12.3rc1
2 changes: 1 addition & 1 deletion deploy/determined_deploy/aws/templates/secure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Parameters:
Version:
Type: String
Description: Determined version or commit for master image
Default: 0.12.3rc0
Default: 0.12.3rc1

DBPassword:
Type: String
Expand Down
2 changes: 1 addition & 1 deletion deploy/determined_deploy/aws/templates/simple.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Parameters:
Version:
Type: String
Description: Determined version or commit for master docker image
Default: 0.12.3rc0
Default: 0.12.3rc1

DBPassword:
Type: String
Expand Down
2 changes: 1 addition & 1 deletion deploy/determined_deploy/aws/templates/vpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Parameters:
Version:
Type: String
Description: Determined version or commit for master image
Default: 0.12.3rc0
Default: 0.12.3rc1

DBPassword:
Type: String
Expand Down
2 changes: 1 addition & 1 deletion webui/elm/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
}
}();

let app = Elm.Main.init({ flags: '0.12.3rc0' });
let app = Elm.Main.init({ flags: '0.12.3rc1' });
DetShims.addPorts(app);
</script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion webui/react/config-overrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module.exports = override(
// Webapp version is hardcoded but handled by `bumpversion`
addWebpackPlugin(
new webpack.DefinePlugin({
'process.env.VERSION': '"0.12.3rc0"',
'process.env.VERSION': '"0.12.3rc1"',
'process.env.IS_DEV': JSON.stringify(process.env.NODE_ENV === 'development'),
})
)
Expand Down

0 comments on commit 2743056

Please sign in to comment.