Skip to content

Commit

Permalink
Prepare 0.9.0 release (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
kezhenxu94 authored Oct 13, 2021
1 parent 6242ac4 commit ed6ff13
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
20 changes: 20 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@ Changes by Version
==================
Release Notes.

0.9.0
------------------

### Features

- Add the sub-command `dependency instance` to query instance relationships (#117)

### Bug Fixes

- fix: `multiple-linear` command's `labels` type can be string type (#122)
- Add missing `dest-service-id` `dest-service-name` to `metrics linear` command (#121)
- Fix the wrong name when getting `destInstance` flag (#118)

### Chores

- Upgrade Go version to 1.16 (#120)
- Migrate tests to infra-e2e, overhaul the flags names (#119)
- Publish Docker snapshot images to ghcr (#116)
- Remove dist directory when build release source tar (#115)

0.8.0
------------------

Expand Down
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG VERSION

FROM golang:1.16 AS builder

ARG VERSION

ENV VERSION=$VERSION
ENV CGO_ENABLED=0
ENV GO111MODULE=on

Expand All @@ -28,7 +29,7 @@ RUN go mod download

COPY . .

RUN make linux && mv bin/swctl-*-linux-amd64 /swctl
RUN make install DESTDIR=/

FROM alpine

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ check-codegen:
fi

.PHONY: docker
docker:
docker: clean
docker build --build-arg VERSION=$(VERSION) . -t $(HUB)/$(APP_NAME):$(VERSION)

.PHONY: docker.push
Expand Down

0 comments on commit ed6ff13

Please sign in to comment.