Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.27.0'
go-version: '1.27.1'
cache: true
- name: Restore LLVM source cache
uses: actions/cache/restore@v5
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.27.0'
go-version: '1.27.1'
cache: true
- name: Build TinyGo (LLVM ${{ matrix.version }})
run: go install -tags=llvm${{ matrix.version }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.27.0'
go-version: '1.27.1'
cache: true
- name: Run go mod tidy
run: go mod tidy
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.27.0'
go-version: '1.27.1'
cache: true
- name: Install wasmtime
uses: bytecodealliance/actions/wasmtime/setup@v1
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.27.0'
go-version: '1.27.1'
cache: true
- name: Download release artifact
uses: actions/download-artifact@v8
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.27.0'
go-version: '1.27.1'
cache: true
- name: Install Node.js
uses: actions/setup-node@v6
Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.27.0'
go-version: '1.27.1'
cache: true
- name: Restore LLVM source cache
uses: actions/cache/restore@v5
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.27.0'
go-version: '1.27.1'
cache: true
- name: Restore cached LLVM source
uses: actions/cache/restore@v5
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.27.0'
go-version: '1.27.1'
cache: true
- name: Download TinyGo build
uses: actions/download-artifact@v8
Expand All @@ -150,7 +150,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.27.0'
go-version: '1.27.1'
cache: true
- name: Download TinyGo build
uses: actions/download-artifact@v8
Expand All @@ -176,7 +176,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.27.0'
go-version: '1.27.1'
cache: true
- name: Download TinyGo build
uses: actions/download-artifact@v8
Expand Down
2 changes: 1 addition & 1 deletion goenv/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

// Version of TinyGo.
// Update this value before release of new version of software.
const version = "0.42.0"
const version = "0.43.0-dev"

// Return TinyGo version, either in the form 0.30.0 or as a development version
// (like 0.30.0-dev-abcd012).
Expand Down
Loading