Skip to content

Commit 780959d

Browse files
authored
Merge pull request #79 from fastly/dgryski/release-v1.0.0
Update for 1.0 release
2 parents 66aad92 + 36d8fed commit 780959d

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.github/workflows/build-examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build-examples-tinygo:
55
strategy:
66
matrix:
7-
go-version: ['^1.20.0', '^1.19.0']
7+
go-version: ['~1.20.0', '~1.19.0']
88
tinygo-version: ['0.28.1']
99
runs-on: ubuntu-latest
1010
steps:
@@ -20,7 +20,7 @@ jobs:
2020
tinygo-version: ${{ matrix.tinygo-version }}
2121
- name: Build examples
2222
run: |
23-
for i in _examples/*; do
23+
for i in _examples/*/; do
2424
echo ${GITHUB_WORKSPACE}/$i
2525
cd ${GITHUB_WORKSPACE}/$i && tinygo build -target=wasi
2626
done
@@ -38,7 +38,7 @@ jobs:
3838
go-version: ${{ matrix.go-version }}
3939
- name: Build examples
4040
run: |
41-
for i in _examples/*; do
41+
for i in _examples/*/; do
4242
echo ${GITHUB_WORKSPACE}/$i
4343
cd ${GITHUB_WORKSPACE}/$i && env GOARCH=wasm GOOS=wasip1 go build
4444
done

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Install Go
1212
uses: actions/setup-go@v3
1313
with:
14-
go-version: '^1.20.0'
14+
go-version: '~1.20.0'
1515
- name: Install TinyGo
1616
uses: ./.github/actions/install-tinygo
1717
with:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Unreleased
22

3+
## 1.0.0 (2023-09-13)
4+
5+
- Unchanged from 0.2.0
6+
37
## 0.2.0 (2023-08-11)
48

59
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# compute-sdk-go
22

3-
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+).
3+
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+).
44

55
## Quick Start
66

0 commit comments

Comments
 (0)