Skip to content

Commit 2746222

Browse files
authored
Release 1.4 (#1483)
* add 1.4.0 version changes * ran make release * updated tag for tutorial dockerfiles * add GO111MODULE
1 parent 7730c12 commit 2746222

File tree

32 files changed

+38
-37
lines changed

32 files changed

+38
-37
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
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.4.0-rc.1
56+
BASE_VERSION = 1.4.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

Lines changed: 1 addition & 1 deletion
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.4.0-rc.1"
167+
_OM_VERSION: "1.4.0"
168168
_GCB_POST_SUBMIT: "0"
169169
_GCB_LATEST_VERSION: "undefined"
170170
_ARTIFACTS_BUCKET: "gs://open-match-build-artifacts/output/"

go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2
144144
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
145145
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
146146
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
147+
github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=
147148
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
148149
github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
149150
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=

install/helm/open-match/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# limitations under the License.
1414

1515
apiVersion: v2
16-
appVersion: "1.4.0-rc.1"
17-
version: 1.4.0-rc.1
16+
appVersion: "1.4.0"
17+
version: 1.4.0
1818
name: open-match
1919
dependencies:
2020
- name: redis

install/helm/open-match/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ global:
271271
# Use this field if you need to override the image registry and image tag for all services defined in this chart
272272
image:
273273
registry: gcr.io/open-match-public-images
274-
tag: 1.4.0-rc.1
274+
tag: 1.4.0
275275
pullPolicy: Always
276276

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

third_party/swaggerui/config.json

Lines changed: 6 additions & 6 deletions
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.4.0-rc.1/frontend.swagger.json"},
4-
{"name": "Backend", "url": "https://open-match.dev/api/v1.4.0-rc.1/backend.swagger.json"},
5-
{"name": "Query", "url": "https://open-match.dev/api/v1.4.0-rc.1/query.swagger.json"},
6-
{"name": "MatchFunction", "url": "https://open-match.dev/api/v1.4.0-rc.1/matchfunction.swagger.json"},
7-
{"name": "Synchronizer", "url": "https://open-match.dev/api/v1.4.0-rc.1/synchronizer.swagger.json"},
8-
{"name": "Evaluator", "url": "https://open-match.dev/api/v1.4.0-rc.1/evaluator.swagger.json"}
3+
{"name": "Frontend", "url": "https://open-match.dev/api/v1.4.0/frontend.swagger.json"},
4+
{"name": "Backend", "url": "https://open-match.dev/api/v1.4.0/backend.swagger.json"},
5+
{"name": "Query", "url": "https://open-match.dev/api/v1.4.0/query.swagger.json"},
6+
{"name": "MatchFunction", "url": "https://open-match.dev/api/v1.4.0/matchfunction.swagger.json"},
7+
{"name": "Synchronizer", "url": "https://open-match.dev/api/v1.4.0/synchronizer.swagger.json"},
8+
{"name": "Evaluator", "url": "https://open-match.dev/api/v1.4.0/evaluator.swagger.json"}
99
]
1010
}

tutorials/custom_evaluator/director/Dockerfile

Lines changed: 1 addition & 1 deletion
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.4.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.4.0
2121
RUN go mod tidy
2222
RUN go build -o director .
2323

tutorials/custom_evaluator/evaluator/Dockerfile

Lines changed: 1 addition & 1 deletion
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.4.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.4.0
2121
RUN go mod tidy
2222
RUN go build -o evaluator .
2323

tutorials/custom_evaluator/frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
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.4.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.4.0
2121
RUN go mod tidy
2222
RUN go build -o frontend .
2323

tutorials/custom_evaluator/matchfunction/Dockerfile

Lines changed: 1 addition & 1 deletion
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.4.0-rc.1
20+
RUN go mod edit -replace open-match.dev/open-match@v0.0.0-dev=open-match.dev/open-match@v1.4.0
2121
RUN go mod tidy
2222
RUN go build -o matchfunction .
2323

0 commit comments

Comments
 (0)