Skip to content

Commit

Permalink
Release 1.4 (#1483)
Browse files Browse the repository at this point in the history
* add 1.4.0 version changes

* ran make release

* updated tag for tutorial dockerfiles

* add GO111MODULE
  • Loading branch information
syntxerror authored Aug 16, 2022
1 parent 7730c12 commit 2746222
Show file tree
Hide file tree
Showing 32 changed files with 38 additions and 37 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# If you want information on how to edit this file checkout,
# http://makefiletutorial.com/

BASE_VERSION = 1.4.0-rc.1
BASE_VERSION = 1.4.0
SHORT_SHA = $(shell git rev-parse --short=7 HEAD | tr -d [:punct:])
BRANCH_NAME = $(shell git rev-parse --abbrev-ref HEAD | tr -d [:punct:])
VERSION = $(BASE_VERSION)-$(SHORT_SHA)
Expand Down
2 changes: 1 addition & 1 deletion cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ artifacts:
- install/yaml/06-open-match-override-configmap.yaml

substitutions:
_OM_VERSION: "1.4.0-rc.1"
_OM_VERSION: "1.4.0"
_GCB_POST_SUBMIT: "0"
_GCB_LATEST_VERSION: "undefined"
_ARTIFACTS_BUCKET: "gs://open-match-build-artifacts/output/"
Expand Down
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
Expand Down
4 changes: 2 additions & 2 deletions install/helm/open-match/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# limitations under the License.

apiVersion: v2
appVersion: "1.4.0-rc.1"
version: 1.4.0-rc.1
appVersion: "1.4.0"
version: 1.4.0
name: open-match
dependencies:
- name: redis
Expand Down
2 changes: 1 addition & 1 deletion install/helm/open-match/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ global:
# Use this field if you need to override the image registry and image tag for all services defined in this chart
image:
registry: gcr.io/open-match-public-images
tag: 1.4.0-rc.1
tag: 1.4.0
pullPolicy: Always

# Expose the telemetry configurations to all subcharts because prometheus, for example,
Expand Down
12 changes: 6 additions & 6 deletions third_party/swaggerui/config.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"urls": [
{"name": "Frontend", "url": "https://open-match.dev/api/v1.4.0-rc.1/frontend.swagger.json"},
{"name": "Backend", "url": "https://open-match.dev/api/v1.4.0-rc.1/backend.swagger.json"},
{"name": "Query", "url": "https://open-match.dev/api/v1.4.0-rc.1/query.swagger.json"},
{"name": "MatchFunction", "url": "https://open-match.dev/api/v1.4.0-rc.1/matchfunction.swagger.json"},
{"name": "Synchronizer", "url": "https://open-match.dev/api/v1.4.0-rc.1/synchronizer.swagger.json"},
{"name": "Evaluator", "url": "https://open-match.dev/api/v1.4.0-rc.1/evaluator.swagger.json"}
{"name": "Frontend", "url": "https://open-match.dev/api/v1.4.0/frontend.swagger.json"},
{"name": "Backend", "url": "https://open-match.dev/api/v1.4.0/backend.swagger.json"},
{"name": "Query", "url": "https://open-match.dev/api/v1.4.0/query.swagger.json"},
{"name": "MatchFunction", "url": "https://open-match.dev/api/v1.4.0/matchfunction.swagger.json"},
{"name": "Synchronizer", "url": "https://open-match.dev/api/v1.4.0/synchronizer.swagger.json"},
{"name": "Evaluator", "url": "https://open-match.dev/api/v1.4.0/evaluator.swagger.json"}
]
}
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/evaluator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o evaluator .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/solution/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/solution/evaluator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o evaluator .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/solution/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/default_evaluator/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/default_evaluator/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/default_evaluator/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/default_evaluator/solution/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/default_evaluator/solution/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/solution/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/solution/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/solution/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/solution/director/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o director .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/solution/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o frontend .

Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/solution/matchfunction/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /app
ENV GO111MODULE=on

COPY . .
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]-rc.1
RUN go mod edit -replace open-match.dev/[email protected]=open-match.dev/[email protected]
RUN go mod tidy
RUN go build -o matchfunction .

Expand Down

0 comments on commit 2746222

Please sign in to comment.