Skip to content

Commit ed6ff13

Browse files
authored
Prepare 0.9.0 release (#123)
1 parent 6242ac4 commit ed6ff13

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

CHANGES.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@ Changes by Version
22
==================
33
Release Notes.
44

5+
0.9.0
6+
------------------
7+
8+
### Features
9+
10+
- Add the sub-command `dependency instance` to query instance relationships (#117)
11+
12+
### Bug Fixes
13+
14+
- fix: `multiple-linear` command's `labels` type can be string type (#122)
15+
- Add missing `dest-service-id` `dest-service-name` to `metrics linear` command (#121)
16+
- Fix the wrong name when getting `destInstance` flag (#118)
17+
18+
### Chores
19+
20+
- Upgrade Go version to 1.16 (#120)
21+
- Migrate tests to infra-e2e, overhaul the flags names (#119)
22+
- Publish Docker snapshot images to ghcr (#116)
23+
- Remove dist directory when build release source tar (#115)
24+
525
0.8.0
626
------------------
727

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
ARG VERSION
17-
1816
FROM golang:1.16 AS builder
1917

18+
ARG VERSION
19+
20+
ENV VERSION=$VERSION
2021
ENV CGO_ENABLED=0
2122
ENV GO111MODULE=on
2223

@@ -28,7 +29,7 @@ RUN go mod download
2829

2930
COPY . .
3031

31-
RUN make linux && mv bin/swctl-*-linux-amd64 /swctl
32+
RUN make install DESTDIR=/
3233

3334
FROM alpine
3435

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ check-codegen:
137137
fi
138138

139139
.PHONY: docker
140-
docker:
140+
docker: clean
141141
docker build --build-arg VERSION=$(VERSION) . -t $(HUB)/$(APP_NAME):$(VERSION)
142142

143143
.PHONY: docker.push

0 commit comments

Comments
 (0)