Skip to content

Commit 159c321

Browse files
authored
Release 1.6.0 changes (#1516)
* release changes * tutorial changes * remaining changes * include test in the presubmit command
1 parent 4b8761a commit 159c321

File tree

32 files changed

+38
-38
lines changed

32 files changed

+38
-38
lines changed

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.6.0-rc.1
56+
BASE_VERSION = 1.6.0
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
@@ -164,7 +164,7 @@ artifacts:
164164
- install/yaml/06-open-match-override-configmap.yaml
165165

166166
substitutions:
167-
_OM_VERSION: "1.6.0-rc.1"
167+
_OM_VERSION: "1.6.0"
168168
_GCB_POST_SUBMIT: "0"
169169
_GCB_LATEST_VERSION: "undefined"
170170
_ARTIFACTS_BUCKET: "gs://open-match-build-artifacts/output/"

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.6.0-rc.1"
17-
version: 1.6.0-rc.1
16+
appVersion: "1.6.0"
17+
version: 1.6.0
1818
name: open-match
1919
dependencies:
2020
- name: redis

install/helm/open-match/values-production.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ global:
296296
# Use this field if you need to override the image registry and image tag for all services defined in this chart
297297
image:
298298
registry: gcr.io/open-match-public-images
299-
tag: 1.6.0-rc.1
299+
tag: 1.6.0
300300
pullPolicy: Always
301301

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

install/helm/open-match/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ global:
294294
# Use this field if you need to override the image registry and image tag for all services defined in this chart
295295
image:
296296
registry: gcr.io/open-match-public-images
297-
tag: 1.6.0-rc.1
297+
tag: 1.6.0
298298
pullPolicy: Always
299299

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

third_party/swaggerui/config.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"urls": [
3-
{"name": "Frontend", "url": "https://open-match.dev/api/v1.6.0-rc.1/frontend.swagger.json"},
4-
{"name": "Backend", "url": "https://open-match.dev/api/v1.6.0-rc.1/backend.swagger.json"},
5-
{"name": "Query", "url": "https://open-match.dev/api/v1.6.0-rc.1/query.swagger.json"},
6-
{"name": "MatchFunction", "url": "https://open-match.dev/api/v1.6.0-rc.1/matchfunction.swagger.json"},
7-
{"name": "Synchronizer", "url": "https://open-match.dev/api/v1.6.0-rc.1/synchronizer.swagger.json"},
8-
{"name": "Evaluator", "url": "https://open-match.dev/api/v1.6.0-rc.1/evaluator.swagger.json"}
3+
{"name": "Frontend", "url": "https://open-match.dev/api/v1.6.0/frontend.swagger.json"},
4+
{"name": "Backend", "url": "https://open-match.dev/api/v1.6.0/backend.swagger.json"},
5+
{"name": "Query", "url": "https://open-match.dev/api/v1.6.0/query.swagger.json"},
6+
{"name": "MatchFunction", "url": "https://open-match.dev/api/v1.6.0/matchfunction.swagger.json"},
7+
{"name": "Synchronizer", "url": "https://open-match.dev/api/v1.6.0/synchronizer.swagger.json"},
8+
{"name": "Evaluator", "url": "https://open-match.dev/api/v1.6.0/evaluator.swagger.json"}
99
]
1010
}

tutorials/custom_evaluator/director/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o director .
2323

tutorials/custom_evaluator/evaluator/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o evaluator .
2323

tutorials/custom_evaluator/frontend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o frontend .
2323

tutorials/custom_evaluator/matchfunction/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o matchfunction .
2323

tutorials/custom_evaluator/solution/director/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o director .
2323

tutorials/custom_evaluator/solution/evaluator/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o evaluator .
2323

tutorials/custom_evaluator/solution/frontend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o frontend .
2323

tutorials/custom_evaluator/solution/matchfunction/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o matchfunction .
2323

tutorials/default_evaluator/director/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o director .
2323

tutorials/default_evaluator/frontend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o frontend .
2323

tutorials/default_evaluator/matchfunction/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o matchfunction .
2323

tutorials/default_evaluator/solution/director/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o director .
2323

tutorials/default_evaluator/solution/frontend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o frontend .
2323

tutorials/default_evaluator/solution/matchfunction/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o matchfunction .
2323

tutorials/matchmaker101/director/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o director .
2323

tutorials/matchmaker101/frontend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o frontend .
2323

tutorials/matchmaker101/matchfunction/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o matchfunction .
2323

tutorials/matchmaker101/solution/director/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o director .
2323

tutorials/matchmaker101/solution/frontend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o frontend .
2323

tutorials/matchmaker101/solution/matchfunction/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o matchfunction .
2323

tutorials/matchmaker102/director/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o director .
2323

tutorials/matchmaker102/frontend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o frontend .
2323

tutorials/matchmaker102/matchfunction/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o matchfunction .
2323

tutorials/matchmaker102/solution/director/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o director .
2323

tutorials/matchmaker102/solution/frontend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o frontend .
2323

tutorials/matchmaker102/solution/matchfunction/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WORKDIR /app
1717
ENV GO111MODULE=on
1818

1919
COPY . .
20-
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.6.0
2121
RUN go mod tidy
2222
RUN go build -o matchfunction .
2323

0 commit comments

Comments
 (0)