Skip to content

Commit

Permalink
Merge pull request #79 from fastly/dgryski/release-v1.0.0
Browse files Browse the repository at this point in the history
Update for 1.0 release
  • Loading branch information
dgryski authored Sep 13, 2023
2 parents 66aad92 + 36d8fed commit 780959d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Unreleased

## 1.0.0 (2023-09-13)

- Unchanged from 0.2.0

## 0.2.0 (2023-08-11)

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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) applications with [Go](https://go.dev) (1.21+) and [TinyGo](https://tinygo.org/) (0.28.1+).

## Quick Start

Expand Down

0 comments on commit 780959d

Please sign in to comment.