Skip to content

Commit 98afd89

Browse files
committed
📦 updates HDK for v0.4.0
1 parent d17eef8 commit 98afd89

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.gitpod.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN curl -fsSL https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz | tar
1515
# ------------------------------------
1616
# Install TinyGo
1717
# ------------------------------------
18-
ARG TINYGO_VERSION="0.27.0"
18+
ARG TINYGO_VERSION="0.28.1"
1919
RUN wget https://github.com/tinygo-org/tinygo/releases/download/v${TINYGO_VERSION}/tinygo_${TINYGO_VERSION}_amd64.deb
2020
RUN sudo dpkg -i tinygo_${TINYGO_VERSION}_amd64.deb
2121
RUN rm tinygo_${TINYGO_VERSION}_amd64.deb

Taskfile.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ tasks:
2626
#TAG: "v0.3.6" # next release
2727
#TAG: "v0.3.7" # next release (this is a pre-release)
2828
#TAG: "v0.3.8"
29-
TAG: "v0.3.9"
30-
#TAG: "v0.4.0"
29+
#TAG: "v0.3.9"
30+
TAG: "v0.4.0"
3131

3232
cmds:
3333
- echo "📦 Generating release..."
@@ -38,13 +38,13 @@ tasks:
3838

3939
remove-tag:
4040
env:
41-
TAG: "v0.3.9"
41+
TAG: "v0.4.0"
4242
cmds:
4343
- git tag -d ${TAG}
4444

4545
build-releases:
4646
env:
47-
TAG: "v0.3.9"
47+
TAG: "v0.4.0"
4848
cmds:
4949
- |
5050
cd capsule-cli
@@ -77,7 +77,7 @@ tasks:
7777
build-push-docker-image:
7878
vars:
7979
IMAGE_BASE_NAME: "capsule-http"
80-
IMAGE_TAG: "0.3.9"
80+
IMAGE_TAG: "0.4.0"
8181
cmds:
8282
- echo "👋 {{.IMAGE_BASE_NAME}}-{{.GOOS}}-{{.GOARCH}}:{{.IMAGE_TAG}}"
8383
- |

capsule-http/Taskfile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ tasks:
109109
GOOS: "linux"
110110
GOARCH: "arm64"
111111
IMAGE_BASE_NAME: "capsule-http"
112-
IMAGE_TAG: "0.3.9"
112+
IMAGE_TAG: "0.4.0"
113113
cmds:
114114
- |
115115
IMAGE_NAME="${IMAGE_BASE_NAME}-${GOOS}-${GOARCH}"

capsule-http/functions/hello-world/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM botsgarden/capsule-http-linux-arm64:0.3.9
1+
FROM botsgarden/capsule-http-linux-arm64:0.4.0
22
COPY hello-world.wasm .
33
EXPOSE 8080
44
CMD ["/capsule-http", "--wasm=./hello-world.wasm", "--httpPort=8080"]

docs/capsule-http-ovh-deploy.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# Deploy Capsule FaaS on OVH Cloud
22

3+
🚧 this is a work in progress

0 commit comments

Comments
 (0)