From 699c77a12314b9e011d23139fede28fe5d105f56 Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Tue, 12 Sep 2023 22:06:23 -0700 Subject: [PATCH 1/4] Update for 1.0 release --- CHANGELOG.md | 4 ++++ README.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10867ae..641646a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Unreleased +## 1.0.0 (2023-09-13) + +- Unchanged from 0.2.0 + ## 0.2.0 (2023-08-11) ### Added diff --git a/README.md b/README.md index 19b392d..b7fe33d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # compute-sdk-go -Experimental Go SDK for building [Compute@Edge](https://www.fastly.com/products/edge-compute/serverless) applications with [Go](https://go.dev) (1.21+) and [TinyGo](https://tinygo.org/) (0.28.1+). +Go SDK for building [Compute@Edge](https://www.fastly.com/products/edge-compute/serverless) applications with [Go](https://go.dev) (1.21+) and [TinyGo](https://tinygo.org/) (0.28.1+). ## Quick Start From d8cbd13682badd102620302f2afdc9423742ecd9 Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Tue, 12 Sep 2023 22:32:49 -0700 Subject: [PATCH 2/4] .github/build-examples: only glob directories --- .github/workflows/build-examples.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-examples.yml b/.github/workflows/build-examples.yml index 076a1d4..1ca4a71 100644 --- a/.github/workflows/build-examples.yml +++ b/.github/workflows/build-examples.yml @@ -20,7 +20,7 @@ jobs: tinygo-version: ${{ matrix.tinygo-version }} - name: Build examples run: | - for i in _examples/*; do + for i in _examples/*/; do echo ${GITHUB_WORKSPACE}/$i cd ${GITHUB_WORKSPACE}/$i && tinygo build -target=wasi done @@ -38,7 +38,7 @@ jobs: go-version: ${{ matrix.go-version }} - name: Build examples run: | - for i in _examples/*; do + for i in _examples/*/; do echo ${GITHUB_WORKSPACE}/$i cd ${GITHUB_WORKSPACE}/$i && env GOARCH=wasm GOOS=wasip1 go build done From 6ef23e7f6eb0783cd3caf39ae6c5b2a05ed0520b Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Tue, 12 Sep 2023 22:43:40 -0700 Subject: [PATCH 3/4] .github/workflows: fix Go version --- .github/workflows/build-examples.yml | 2 +- .github/workflows/integration-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-examples.yml b/.github/workflows/build-examples.yml index 1ca4a71..f560382 100644 --- a/.github/workflows/build-examples.yml +++ b/.github/workflows/build-examples.yml @@ -4,7 +4,7 @@ jobs: build-examples-tinygo: strategy: matrix: - go-version: ['^1.20.0', '^1.19.0'] + go-version: ['~1.20.0', '~1.19.0'] tinygo-version: ['0.28.1'] runs-on: ubuntu-latest steps: diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 3c1f262..2be6c45 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -11,7 +11,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: '^1.20.0' + go-version: '~1.20.0' - name: Install TinyGo uses: ./.github/actions/install-tinygo with: From 36d8fed2dcbd45772aaa8b63c9e196ecf9fb5cc9 Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Wed, 13 Sep 2023 08:14:37 -0700 Subject: [PATCH 4/4] README: tweak C@E link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b7fe33d..9b57f76 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # compute-sdk-go -Go SDK for building [Compute@Edge](https://www.fastly.com/products/edge-compute/serverless) applications with [Go](https://go.dev) (1.21+) and [TinyGo](https://tinygo.org/) (0.28.1+). +Go SDK for building [Compute@Edge](https://www.fastly.com/products/edge-compute) applications with [Go](https://go.dev) (1.21+) and [TinyGo](https://tinygo.org/) (0.28.1+). ## Quick Start