Skip to content

Commit

Permalink
updating changelog and dockerfile (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivanshVij authored Apr 28, 2022
1 parent 5785f03 commit 665f1af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions protoc-gen-frisbee/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang as builder

ENV GOOS=linux GOARCH=amd64 CGO_ENABLED=0

RUN go install github.com/loopholelabs/frisbee/[email protected].5
RUN go install github.com/loopholelabs/frisbee/[email protected].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.
Expand All @@ -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 /

Expand Down

0 comments on commit 665f1af

Please sign in to comment.