-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prepping for release * Prepping for release * Prepping for release
- Loading branch information
1 parent
a8c5009
commit 72f92d4
Showing
13 changed files
with
2,282 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM golang as builder | |
|
||
ENV GOOS=linux GOARCH=amd64 CGO_ENABLED=0 | ||
|
||
RUN go install github.com/loopholelabs/frpc-go/[email protected].0 | ||
RUN go install github.com/loopholelabs/frpc-go/[email protected].1 | ||
|
||
# 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/frpc-go" | ||
LABEL "build.buf.plugins.runtime_library_versions.0.version"="v0.7.0" | ||
LABEL "build.buf.plugins.runtime_library_versions.0.version"="v0.7.1" | ||
|
||
COPY --from=builder /go/bin / | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,5 +17,5 @@ | |
package version | ||
|
||
const ( | ||
Version = "v0.7.0" | ||
Version = "v0.7.1" | ||
) |
Oops, something went wrong.