From 665f1afe3607c860066670b7a4d0c8004c5a6c75 Mon Sep 17 00:00:00 2001 From: Shivansh Vij Date: Thu, 28 Apr 2022 15:45:15 -0400 Subject: [PATCH] updating changelog and dockerfile (#110) --- CHANGELOG.md | 5 ++++- protoc-gen-frisbee/dockerfile | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ede0bf2..247c92a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [v0.4.6] - 2022-04-28 (Beta) + ## Fixes - Fixing issue where generated `decode` functions for slices would not allocate the proper memory before decoding the slice values (Issue #108) @@ -255,7 +257,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Initial Release of Frisbee -[unreleased]: https://github.com/loopholelabs/frisbee/compare/v0.4.5...HEAD +[unreleased]: https://github.com/loopholelabs/frisbee/compare/v0.4.6...HEAD +[v0.4.6]: https://github.com/loopholelabs/frisbee/compare/v0.4.5...v0.4.6 [v0.4.5]: https://github.com/loopholelabs/frisbee/compare/v0.4.4...v0.4.5 [v0.4.4]: https://github.com/loopholelabs/frisbee/compare/v0.4.3...v0.4.4 [v0.4.3]: https://github.com/loopholelabs/frisbee/compare/v0.4.2...v0.4.3 diff --git a/protoc-gen-frisbee/dockerfile b/protoc-gen-frisbee/dockerfile index f901311..e13fe71 100644 --- a/protoc-gen-frisbee/dockerfile +++ b/protoc-gen-frisbee/dockerfile @@ -2,7 +2,7 @@ FROM golang as builder ENV GOOS=linux GOARCH=amd64 CGO_ENABLED=0 -RUN go install github.com/loopholelabs/frisbee/protoc-gen-frisbee@v0.4.5 +RUN go install github.com/loopholelabs/frisbee/protoc-gen-frisbee@v0.4.6 # Note, the Docker images must be built for amd64. If the host machine architecture is not amd64 # you need to cross-compile the binary and move it into /go/bin. @@ -12,7 +12,7 @@ FROM scratch # Runtime dependencies LABEL "build.buf.plugins.runtime_library_versions.0.name"="github.com/loopholelabs/frisbee" -LABEL "build.buf.plugins.runtime_library_versions.0.version"="v0.4.5" +LABEL "build.buf.plugins.runtime_library_versions.0.version"="v0.4.6" COPY --from=builder /go/bin /