Skip to content

Commit 4dca40d

Browse files
authored
Updated to 1.8.1 (#1677)
Changed release semantic versions: 1.8.1
1 parent c58996d commit 4dca40d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/ISSUE_TEMPLATE/release.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ otherwise there should already be a `release-0.5` branch so run,
4949
git checkout -b release-0.5 upstream/release-0.5
5050
```
5151

52-
**NOTE: The branch name must be in the format, `release-X.Y` otherwise**
52+
**NOTE: The branch name must be in the format, `release-X.Y.Z` otherwise**
5353
**some artifacts will not be pushed.**
5454

5555
## Releases & Versions
@@ -97,7 +97,7 @@ releases. Find {version} and replace with the current release (e.g. 0.5.0)
9797
only required once.**
9898

9999
- [ ] Create the branch in the **upstream** repository. It should be named
100-
release-X.Y. Example: release-0.5. At this point there's effectively a code
100+
release-X.Y.Z. Example: release-0.5. At this point there's effectively a code
101101
freeze for this version and all work on main will be included in a future
102102
version. If you're on the branch that you created in the *getting setup*
103103
section above you should be able to push upstream.
@@ -106,15 +106,15 @@ only required once.**
106106
git push origin release-0.5
107107
```
108108

109-
- [ ] Announce a PR freeze on release-X.Y branch on [open-match-discuss@](https://groups.google.com/forum/#!forum/open-match-discuss).
109+
- [ ] Announce a PR freeze on release-X.Y.Z branch on [open-match-discuss@](https://groups.google.com/forum/#!forum/open-match-discuss).
110110
- [ ] Open the [`Makefile`](makefile-version) and change BASE_VERSION entry.
111111
- [ ] Open the [`install/helm/open-match/Chart.yaml`](om-chart-yaml-version) and change the `appVersion` and `version` entries.
112112
- [ ] Open the [`install/helm/open-match/values.yaml`](om-values-yaml-version) and change the `tag` entries.
113113
- [ ] Open the [`cloudbuild.yaml`] and change the `_OM_VERSION` entry.
114114
- [ ] There might be additional references to the old version but be careful not to change it for places that have it for historical purposes.
115115
- [ ] Update usage requirements in the Installation doc - e.g. supported minikube version, kubectl version, golang version, etc.
116116
- [ ] Create a PR with the changes, include the release candidate name, and point it to the release branch.
117-
- [ ] Go to [open-match-build](https://pantheon.corp.google.com/cloud-build/triggers?project=open-match-build) and update all *post submit* triggers' `_GCB_LATEST_VERSION` value to the `X.Y` of the release. This value should only increase as it's used to determine the latest stable version.
117+
- [ ] Go to [open-match-build](https://pantheon.corp.google.com/cloud-build/triggers?project=open-match-build) and update all *post submit* triggers' `_GCB_LATEST_VERSION` value to the `X.Y.Z` of the release. This value should only increase as it's used to determine the latest stable version.
118118
- [ ] Merge your changes once the PR is approved. Note: the helm chart is not published to the public registry until the merge is complete (it's a second cloud build trigger upon merge), so you won't be able to do final release testing until after all checks/approvals are finished!
119119

120120
## Create a release branch in the upstream open-match-docs repository
@@ -132,7 +132,7 @@ only required once.**
132132
- [ ] Create a *draft* [release](https://github.com/googleforgames/open-match/releases). Note that github has both "Pre-release" and "draft" as different concepts for a release. Until the release is finalized, only use "Save draft", and do not use "Publish release".
133133
- [ ] Use the [release template](https://github.com/googleforgames/open-match/blob/main/docs/governance/templates/release.md)
134134
- [ ] `Tag = v{version}` (Example: v0.5.0. Append -rc.# for release candidates. Example: v0.5.0-rc.1.)
135-
- [ ] `Target = release-X.Y` (Example: release-0.5.)
135+
- [ ] `Target = release-X.Y.Z` (Example: release-0.5.)
136136
- [ ] `Release Title = v{version}` (Must match `Tag`)
137137
- [ ] `Write` section will contain the contents from the [release template](https://github.com/googleforgames/open-match/blob/main/docs/governance/templates/release.md).
138138
- [ ] Add the milestone to all PRs and issues that were merged since the last milestone. Look at the [releases page](https://github.com/googleforgames/open-match/releases) and look for the "X commits to main since this release" for the diff.

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
# If you want information on how to edit this file checkout,
5454
# http://makefiletutorial.com/
5555

56-
BASE_VERSION = 1.8.0
56+
BASE_VERSION = 1.8.1
5757
SHORT_SHA = $(shell git rev-parse --short=7 HEAD | tr -d [:punct:])
5858
BRANCH_NAME = $(shell git rev-parse --abbrev-ref HEAD | tr -d [:punct:])
5959
VERSION = $(BASE_VERSION)-$(SHORT_SHA)

cloudbuild.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ artifacts:
185185
- api/*.swagger.json
186186

187187
substitutions:
188-
_OM_VERSION: "1.8.0"
188+
_OM_VERSION: "1.8.1"
189189
_GCB_POST_SUBMIT: "0"
190190
_GCB_LATEST_VERSION: "undefined"
191191
_ARTIFACTS_BUCKET: "gs://open-match-build-artifacts/"

install/helm/open-match/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# limitations under the License.
1414

1515
apiVersion: v2
16-
appVersion: "1.8.0"
17-
version: 1.8.0
16+
appVersion: "1.8.1"
17+
version: 1.8.1
1818
name: open-match
1919
dependencies:
2020
- name: redis

install/helm/open-match/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ global:
278278
# Use this field if you need to override the image registry and image tag for all services defined in this chart
279279
image:
280280
registry: gcr.io/open-match-public-images
281-
tag: 1.8.0
281+
tag: 1.8.1
282282
pullPolicy: Always
283283

284284
# Expose the telemetry configurations to all subcharts because prometheus, for example,

0 commit comments

Comments
 (0)